diff --git a/src/app/page.tsx b/src/app/page.tsx index c812e7d..792363b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,9 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Sparkles, Users, Award, Briefcase, Star, Heart } from 'lucide-react'; +import { Sparkles, Users, Award, Briefcase, Star, Heart, Zap, DollarSign, Mail } from 'lucide-react'; export default function HomePage() { return ( @@ -27,14 +30,13 @@ export default function HomePage() { brandName="Love Code" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Courses", id: "/courses" }, - { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "/contact" } + { name: "About", id: "about" }, + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "Contact", id: "contact" } ]} button={{ - text: "Get Started", - href: "/contact" + text: "Get Started", href: "#contact" }} /> @@ -46,8 +48,8 @@ export default function HomePage() { tag="Start Learning Today" tagIcon={Sparkles} buttons={[ - { text: "Explore Courses", href: "/courses" }, - { text: "Book Free Trial", href: "/contact" } + { text: "Explore Courses", href: "#features" }, + { text: "Book Free Trial", href: "#contact" } ]} carouselItems={[ { id: "1", imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-man-typing-laptop_23-2149328253.jpg", imageAlt: "Student coding on laptop" }, @@ -71,7 +73,66 @@ export default function HomePage() { { icon: Briefcase, label: "Job Placements", value: "1,200+" }, { icon: Star, label: "Expert Instructors", value: "50+" } ]} - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" + /> + + +