"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import TextAbout from "@/components/sections/about/TextAbout"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Sparkles, BookOpen, Shield, Zap, Star, Award, Users, CheckCircle, } from "lucide-react"; export default function HomePage() { const navItems = [ { name: "Home", id: "home" }, { name: "About", id: "about" }, { name: "Academics", id: "academics" }, { name: "Staff", id: "staff" }, { name: "Admissions", id: "admissions" }, ]; const footerColumns = [ { items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Academics", href: "/academics" }, { label: "Staff", href: "/staff" }, ], }, { items: [ { label: "Admissions", href: "/admissions" }, { label: "Student Life", href: "#" }, { label: "Events", href: "#" }, { label: "News", href: "#" }, ], }, { items: [ { label: "Contact Us", href: "#" }, { label: "Location", href: "#" }, { label: "Phone", href: "#" }, { label: "Email", href: "#" }, ], }, { items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Careers", href: "#" }, { label: "Partners", href: "#" }, ], }, ]; return (
); }