diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ca7ff0..b56f292 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,61 +1,53 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; import MediaAbout from "@/components/sections/about/MediaAbout"; -import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Users, BookOpen, Award, Globe, Mail } from "lucide-react"; -import Link from "next/link"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Sparkles, BookOpen, Beaker, TrendingUp, Users, Award, Zap, CheckCircle } from "lucide-react"; -export default function HomePage() { +export default function Home() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Programs", id: "features" }, - { name: "Academics", id: "metrics" }, - { name: "Testimonials", id: "testimonials" }, + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Programs", id: "#programs" }, + { name: "Why LUCS", id: "#why-lucs" }, + { name: "Contact", id: "/contact" }, ]; - const navButton = { - text: "Enroll Now", - href: "/contact", - }; - const footerColumns = [ { - title: "Programs", - items: [ - { label: "Bachelor of Science", href: "/programs" }, - { label: "Bachelor of Commerce", href: "/programs" }, - { label: "Master's Programs", href: "/programs" }, - { label: "Research Opportunities", href: "/programs" }, + title: "Programs", items: [ + { label: "Bachelor of Science", href: "#programs" }, + { label: "Bachelor of Commerce", href: "#programs" }, + { label: "Master's Programs", href: "#programs" }, + { label: "Research Opportunities", href: "#programs" }, ], }, { - title: "About", - items: [ - { label: "Our Mission", href: "/about" }, - { label: "Faculty", href: "/about" }, - { label: "Infrastructure", href: "/about" }, - { label: "Achievements", href: "/about" }, + title: "About", items: [ + { label: "Our Mission", href: "#about" }, + { label: "Faculty", href: "#about" }, + { label: "Infrastructure", href: "#about" }, + { label: "Achievements", href: "#about" }, ], }, { - title: "Student Life", - items: [ - { label: "Campus Activities", href: "/contact" }, - { label: "Hostel Facilities", href: "/contact" }, - { label: "Sports & Recreation", href: "/contact" }, + title: "Student Life", items: [ + { label: "Campus Activities", href: "#why-lucs" }, + { label: "Hostel Facilities", href: "#why-lucs" }, + { label: "Sports & Recreation", href: "#why-lucs" }, { label: "Student Portal", href: "https://portal.lucs.edu.in" }, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact Us", href: "/contact" }, { label: "Facebook", href: "https://facebook.com/lucsedu" }, { label: "Instagram", href: "https://instagram.com/lucsedu" }, @@ -78,193 +70,181 @@ export default function HomePage() { headingFontWeight="bold" >