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

Phone

123-456-7890

Email

Connect

  • Youtube
  • Discord
  • LinkedIn
  • Instagram

©2021 by SparkProLearn

bottom of page