From c145d2bf8b0c58451af2cd98b8e781662f2f0c90 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 00:16:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 73 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 63 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a47faf..aeb4cc9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import BlogCardTwo from "@/components/sections/blog/BlogCardTwo"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; export default function LandingPage() { return ( @@ -35,8 +37,12 @@ export default function LandingPage() { name: "How It Works", id: "#about"}, { name: "Features", id: "#features"}, + { + name: "Pricing", id: "#pricing"}, { name: "Testimonials", id: "#testimonials"}, + { + name: "Blog", id: "#blog"}, { name: "FAQ", id: "#faq"}, { @@ -139,6 +145,51 @@ export default function LandingPage() { /> +
+ +
+ +
+ +
+
); -} \ No newline at end of file +}