diff --git a/src/app/page.tsx b/src/app/page.tsx index ef92114..bacb308 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,353 +2,135 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroOverlay from '@/components/sections/hero/HeroOverlay'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Award, CheckCircle, Star } from "lucide-react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import TextAbout from '@/components/sections/about/TextAbout'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; +import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import { Scissors, Clock, Star, MapPin } from "lucide-react"; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "hero" }, + { name: "About", id: "about" }, + { name: "Services", id: "services" }, + { name: "Pricing", id: "pricing" }, + { name: "Contact", id: "contact" } + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); -} +} \ No newline at end of file