diff --git a/src/app/page.tsx b/src/app/page.tsx index 9b76aee..325b7cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,22 +31,11 @@ export default function LandingPage() { @@ -232,60 +123,16 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} testimonials={[ - { - id: "t1", - name: "Aishwarya P", - role: "CS Student", - company: "Tech Institute", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/teenager-working-laptop_23-2148205683.jpg", - }, - { - id: "t2", - name: "Aparna R", - role: "Developer", - company: "Code Lab", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/colleagues-studying-from-notebooks-study-session_23-2149265720.jpg", - }, - { - id: "t3", - name: "Michael S", - role: "Student", - company: "Dev Hub", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-african-man-headphones-smiling-holding-tablet_176420-12578.jpg", - }, - { - id: "t4", - name: "Sarah J", - role: "Learner", - company: "Tech Uni", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg", - }, - { - id: "t5", - name: "David K", - role: "CS Student", - company: "College XP", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/people-working-marketing-agency_52683-107663.jpg", - }, + { id: "t1", name: "Aishwarya P", role: "CS Student", company: "Tech Institute", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/teenager-working-laptop_23-2148205683.jpg" }, + { id: "t2", name: "Aparna R", role: "Developer", company: "Code Lab", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/colleagues-studying-from-notebooks-study-session_23-2149265720.jpg" }, + { id: "t3", name: "Michael S", role: "Student", company: "Dev Hub", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-african-man-headphones-smiling-holding-tablet_176420-12578.jpg" }, + { id: "t4", name: "Sarah J", role: "Learner", company: "Tech Uni", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg" }, + { id: "t5", name: "David K", role: "CS Student", company: "College XP", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-working-marketing-agency_52683-107663.jpg" }, ]} kpiItems={[ - { - value: "4.9/5", - label: "Average Rating", - }, - { - value: "10k+", - label: "Active Users", - }, - { - value: "24/7", - label: "Support", - }, + { value: "4.9/5", label: "Average Rating" }, + { value: "10k+", label: "Active Users" }, + { value: "24/7", label: "Support" }, ]} title="Loved by Students" description="Hear from the community that changed how they learn to code." @@ -297,21 +144,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} faqs={[ - { - id: "q1", - title: "How does matching work?", - content: "Our AI analyzes your skills, preferences, and interests to find the best coding partner.", - }, - { - id: "q2", - title: "Is it free to use?", - content: "Yes, Date for Code is free for students to collaborate and learn.", - }, - { - id: "q3", - title: "Can I use GitHub?", - content: "Absolutely, GitHub integration is built-in for all coding sessions.", - }, + { id: "q1", title: "How does matching work?", content: "Our AI analyzes your skills, preferences, and interests to find the best coding partner." }, + { id: "q2", title: "Is it free to use?", content: "Yes, Date for Code is free for students to collaborate and learn." }, + { id: "q3", title: "Can I use GitHub?", content: "Absolutely, GitHub integration is built-in for all coding sessions." }, ]} title="Common Questions" description="Got questions about Date for Code?" @@ -325,21 +160,10 @@ export default function LandingPage() { title="Get Involved" description="Have questions or want to partner with us?" inputs={[ - { - name: "name", - type: "text", - placeholder: "Your Name", - }, - { - name: "email", - type: "email", - placeholder: "Email Address", - }, + { name: "name", type: "text", placeholder: "Your Name" }, + { name: "email", type: "email", placeholder: "Email Address" }, ]} - textarea={{ - name: "message", - placeholder: "Tell us more...", - }} + textarea={{ name: "message", placeholder: "Tell us more..." }} imageSrc="http://img.b2bpic.net/free-photo/businesswoman-using-horizontal-greenscreen-smartphone-sitting-desk-freelancer-looking-blank-mockup-background-with-isolated-copyspace-chroma-key-template-telephone-display_482257-47715.jpg" /> @@ -349,36 +173,12 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/view-3d-dice-with-abstract-scenery_23-2151045405.jpg" logoText="Date for Code" columns={[ - { - title: "Product", - items: [ - { - label: "Features", - href: "#features", - }, - { - label: "Pricing", - href: "#", - }, - ], - }, - { - title: "Company", - items: [ - { - label: "About", - href: "#", - }, - { - label: "Blog", - href: "#", - }, - ], - }, + { title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "#" }] }, + { title: "Company", items: [{ label: "About", href: "#" }, { label: "Blog", href: "#" }] }, ]} /> ); -} +} \ No newline at end of file