diff --git a/src/app/page.tsx b/src/app/page.tsx index a6f1bba..d0331e0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,175 +1,98 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import { User, Shield, Heart, MessageCircle, ShieldCheck, Sun, Lock } from "lucide-react"; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Shield, Zap, Target, Star, ChevronRight } from 'lucide-react'; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); }