diff --git a/src/app/page.tsx b/src/app/page.tsx index c6dbe3b..197a79a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,15 +11,14 @@ import TestimonialCardSixteen from "@/components/sections/testimonial/Testimonia import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Users, BookOpen, TrendingUp, Award, Linkedin, Twitter, Github, Globe } from "lucide-react"; +import { Users, BookOpen, TrendingUp, Award, Linkedin, Twitter, Github, Globe, HelpCircle, Phone, Mail, MapPin } from "lucide-react"; export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Features", id: "features" }, - { name: "Academics", id: "/academics" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Contact", id: "#contact" }, ]; return ( @@ -50,26 +49,31 @@ export default function HomePage() { background={{ variant: "animated-grid" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/workers-looking-monthly-statistics_329181-12025.jpg?_wi=1", imageAlt: "Student Dashboard Interface"}, + imageSrc: "http://img.b2bpic.net/free-photo/workers-looking-monthly-statistics_329181-12025.jpg?_wi=1", imageAlt: "Student Dashboard Interface" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg?_wi=1", imageAlt: "Online Learning Environment"}, + imageSrc: "http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg?_wi=1", imageAlt: "Online Learning Environment" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=1", imageAlt: "Academic Analytics Dashboard"}, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=1", imageAlt: "Academic Analytics Dashboard" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/privacy-confidential-protection-security-solitude-concept_53876-121229.jpg?_wi=1", imageAlt: "Secure Portal Access"}, + imageSrc: "http://img.b2bpic.net/free-photo/privacy-confidential-protection-security-solitude-concept_53876-121229.jpg?_wi=1", imageAlt: "Secure Portal Access" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/man-showing-something-smartphone-woman_53876-30737.jpg?_wi=1", imageAlt: "Teacher-Student Communication"}, + imageSrc: "http://img.b2bpic.net/free-photo/man-showing-something-smartphone-woman_53876-30737.jpg?_wi=1", imageAlt: "Teacher-Student Communication" + }, ]} buttons={[ - { text: "Student Login", href: "/student-portal" }, - { text: "Teacher Access", href: "/teacher-dashboard" }, + { text: "Student Login", href: "#contact" }, + { text: "Learn More", href: "#features" }, ]} />