diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 8a36859..91d2084 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,179 +1,146 @@ +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; +import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; import FeaturesBento from '@/components/sections/features/FeaturesBento'; import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; -import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; -import { Star, User } from "lucide-react"; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; export default function HomePage() { + const navItems = [ + { name: "Hero", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Capabilities", href: "#features" }, + { name: "Catalog", href: "#products" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "FAQ", href: "#faq" }, + { name: "Contact", href: "#contact" } + ]; + return ( - <> -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
); -} +} \ No newline at end of file