diff --git a/src/app/page.tsx b/src/app/page.tsx index 79410d1..5de1eb1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,13 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa import { Heart, Instagram, Twitter } from "lucide-react"; export default function LandingPage() { + const scrollToSection = (id: string) => { + const element = document.getElementById(id); + if (element) { + element.scrollIntoView({ behavior: "smooth" }); + } + }; + return ( @@ -45,59 +48,20 @@ export default function LandingPage() {
scrollToSection("features") }, + { text: "Emergency Resources", href: "#" }, ]} imageSrc="http://img.b2bpic.net/free-photo/watercolor-paint-background-holi-festival_23-2148093730.jpg" mediaAnimation="slide-up" - avatars={[ - { - src: "http://img.b2bpic.net/free-photo/horizontal-shot-mixed-race-women-have-conversation-learning-process_273609-28625.jpg", alt: "friendly student portrait"}, - { - src: "http://img.b2bpic.net/free-photo/happy-young-partners-cooperate-together-workspace-give-high-five-each-other-have-overjoyed-expressions-work-research-write-down-records-notepad-ponder-idea-work-as-team_273609-28945.jpg", alt: "focused student portrait"}, - { - src: "http://img.b2bpic.net/free-photo/image-mixed-race-boy-girl-collaborate-preparing-course-paper-make-records-notepad-sit-couch-work-presentation-class-being-team-learning-collaboration-concept_273609-28941.jpg", alt: "smiling student portrait"}, - { - src: "http://img.b2bpic.net/free-photo/positive-mixed-race-male-female-look-joyfully-each-other-work-research_273609-44832.jpg", alt: "student leader portrait"}, - { - src: "http://img.b2bpic.net/free-photo/woman-floor-with-book-laptop_23-2148882743.jpg", alt: "calm student portrait"}, - ]} - marqueeItems={[ - { - type: "text", text: "Mental Clarity"}, - { - type: "text", text: "Student-Led"}, - { - type: "text", text: "Balanced Days"}, - { - type: "text", text: "Community Support"}, - { - type: "text", text: "Wellness First"}, - ]} />
@@ -106,12 +70,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - title: "Mood Tracking", description: "Log your daily emotions with emoji check-ins to gain insights into your well-being.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-workstation-with-notebook-copy-space_23-2148430873.jpg"}, - { - title: "Guided Breathing", description: "Use our animated 4-6 breathing visualizer for quick stress reduction.", imageSrc: "http://img.b2bpic.net/free-photo/world-mental-health-day-awareness-illustration_23-2151859110.jpg"}, - { - title: "Daily Goals", description: "Track hydration, sleep, and movement with simple, rewarding checkboxes.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-late-night-laptop_23-2150280980.jpg"}, + { title: "Mood Tracking", description: "Log your daily emotions with emoji check-ins to gain insights into your well-being.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-workstation-with-notebook-copy-space_23-2148430873.jpg" }, + { title: "Guided Breathing", description: "Use our animated 4-6 breathing visualizer for quick stress reduction.", imageSrc: "http://img.b2bpic.net/free-photo/world-mental-health-day-awareness-illustration_23-2151859110.jpg" }, + { title: "Daily Goals", description: "Track hydration, sleep, and movement with simple, rewarding checkboxes.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-late-night-laptop_23-2150280980.jpg" }, ]} title="Wellness Dashboard" description="Monitor your mood, complete daily habits, and follow guided movements for a balanced school day." @@ -122,18 +83,12 @@ export default function LandingPage() { scrollToSection("contact") }]} faqsAnimation="blur-reveal" /> @@ -154,15 +109,11 @@ export default function LandingPage() {
@@ -171,12 +122,8 @@ export default function LandingPage() { logoText="Well-being for All" copyrightText="© 2025 Made by Aarish Vimal" socialLinks={[ - { - icon: Instagram, - href: "#", ariaLabel: "Instagram"}, - { - icon: Twitter, - href: "#", ariaLabel: "Twitter"}, + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, + { icon: Twitter, href: "#", ariaLabel: "Twitter" }, ]} />