diff --git a/src/app/page.tsx b/src/app/page.tsx index 25ac5b5..601d740 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,286 +1,73 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; -import FaqBase from "@/components/sections/faq/FaqBase"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import { - Sparkles, - TrendingUp, - Zap, - BarChart3, - Trophy, - HelpCircle, - Eye, - Users, - Award, -} from "lucide-react"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroCentered from "@/components/sections/hero/HeroCentered"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Mail } from "lucide-react"; -export default function LandingPage() { +const HomePage = () => { return ( - +
-
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
- -
- + -
- -
); -} \ No newline at end of file +}; + +export default HomePage; \ No newline at end of file