import React from 'react'; import { motion } from 'framer-motion'; import { Video, Users, MessageCircle, Star, ArrowRight, ArrowLeft, Calendar } from 'lucide-react'; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Link } from 'react-router-dom'; import { createPageUrl } from '../utils'; export default function CollegeTalks() { const topics = [// Wix (Velo) version of College Talks page // This replaces React with Wix-compatible code import wixLocation from 'wix-location'; import wixWindow from 'wix-window'; $w.onReady(function () { setupTopics(); setupTestimonials(); setupButtons(); }); // Topics Data const topics = [ "College Application Process", "Essay Writing Tips", "Campus Life Insights", "Major Selection", "Financial Aid & Scholarships", "Extracurricular Activities", "Time Management", "Study Strategies", "Career Planning" ]; // Testimonials Data const testimonials = [ { name: "Sarah M.", quote: "These talks demystified the college process for me. Hearing from real students was invaluable!" }, { name: "James L.", quote: "I learned so much about college life that I never would have known. The mentors are amazing!" }, { name: "Emily R.", quote: "The essay writing tips I got during these sessions helped me craft my perfect college essay." } ]; // Populate Topics Repeater function setupTopics() { $w("#topicsRepeater").data = topics.map((topic, index) => ({ _id: index.toString(), title: topic })); $w("#topicsRepeater").onItemReady(($item, itemData) => { $item("#topicText").text = itemData.title; }); } // Populate Testimonials Repeater function setupTestimonials() { $w("#testimonialsRepeater").data = testimonials.map((t, index) => ({ _id: index.toString(), name: t.name, quote: t.quote })); $w("#testimonialsRepeater").onItemReady(($item, itemData) => { $item("#nameText").text = `- ${itemData.name}`; $item("#quoteText").text = `"${itemData.quote}"`; }); } // Button Navigation function setupButtons() { $w("#joinButton").onClick(() => { wixLocation.to("/college-talks-signup"); }); $w("#signupButton").onClick(() => { wixLocation.to("/college-talks-signup"); }); $w("#backButton").onClick(() => { wixLocation.to("/"); }); } // Optional: Open signup in a lightbox export function openSignupLightbox() { wixWindow.openLightbox("CollegeTalksSignup"); } "College Application Process", "Essay Writing Tips", "Campus Life Insights", "Major Selection", "Financial Aid & Scholarships", "Extracurricular Activities", "Time Management", "Study Strategies", "Career Planning" ]; const features = [ { icon: Video, title: "Virtual Zoom Sessions", description: "Connect from anywhere with our easy-to-join video calls" }, { icon: Users, title: "Real College Students", description: "Learn from current students and recent graduates" }, { icon: MessageCircle, title: "Q&A Format", description: "Ask anything - no question is too small or too big" }, { icon: Calendar, title: "Regular Schedule", description: "Multiple sessions weekly to fit your availability" } ]; return (
{/* Navigation */} {/* Hero Section */}

College Talks Program

Get real insights about college life directly from current students and graduates through engaging Zoom sessions.

{/* Features Section */}
{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Topics Section */}

Topics We Discuss

From applications to campus life - we cover it all

{topics.map((topic, index) => (

{topic}

))}
{/* Testimonials */}

What Students Say

{[ { name: "Sarah M.", quote: "These talks demystified the college process for me. Hearing from real students was invaluable!" }, { name: "James L.", quote: "I learned so much about college life that I never would have known. The mentors are amazing!" }, { name: "Emily R.", quote: "The essay writing tips I got during these sessions helped me craft my perfect college essay." } ].map((testimonial, index) => (
{[...Array(5)].map((_, i) => ( ))}

"{testimonial.quote}"

- {testimonial.name}

))}
{/* CTA Section */}

Ready to Learn About College?

Join our next session and get all your college questions answered.

); }
top of page
SparkProLearnLogo.PNG

We Welcome You!

SparkProLearn is a 501 C registered nonprofit aiming to impact students in our local community. We strive daily to have an amazing impact on students around us and help motivate students to achieve their academic goals.

Our Story

SparkProLearn was created in June of 2021 by middle school student Udayjot Singh and his high school friend Aryamann Singh. Since then, it has been continued by fellow high school student Shreyas Venkatesan. SparkProLearn was started to empower middle and high schoolers to achieve the highest potential possible. Many students live in underrepresented areas, and we would like to make sure that everyone has a fair shot at education. We have opened various programs to help this come to fruition. Some of these include our online Zoom talks, inspiring young students to follow in the footsteps of successful college attendees and graduates. We also hold a tutoring program where we hire tutors for underprivileged students in our local community. Now, our organization has several members, focusing on key values we believe are important. 

Business Meeting

Contact

We are always looking for new and exciting opportunities! Email us for any questions or comments!

©2021 by SparkProLearn

bottom of page