diff --git a/src/app/page.tsx b/src/app/page.tsx index b3d81c5..ae60ad2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,177 +1,101 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import TextAbout from '@/components/sections/about/TextAbout'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ArrowRight, Star, Mail, Instagram, Twitter, Linkedin } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "Story", id: "#story" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" } +]; + +export default function HomePage() { return ( - - - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- -
+
); }