diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index ce67b77..042f169 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,221 +1,70 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeaturesBento from '@/components/sections/features/FeaturesBento'; -import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import HeroBrand from '@/components/sections/hero/HeroBrand'; +import FeaturesBento from '@/components/sections/features/FeaturesBento'; import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards'; import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; -import { BookOpen, CheckCircle, Clock, GraduationCap, Shield, TrendingUp, User, Zap } from "lucide-react"; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; export default function HomePage() { + const navItems = [ + { name: "Home", href: "#home" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "About", href: "#about" }, + { name: "Courses", href: "#courses" }, + { name: "Pricing", href: "#pricing" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "FAQ", href: "#faq" }, + { name: "Contact", href: "#contact" } + ]; + return ( - <> -
- - - -
+ + -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
); -} +} \ No newline at end of file