From 0a842457a928875bda9454237c5cc1092d0523c2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:24:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 122 ++++++++++++++++++++++------------------------- 1 file changed, 58 insertions(+), 64 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 27046aa..2dfa576 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroLogo from '@/components/sections/hero/HeroLogo'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { PenTool, Mail, Instagram, Linkedin, Twitter } from "lucide-react"; export default function LandingPage() { return ( @@ -34,100 +35,93 @@ export default function LandingPage() { { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} - brandName="Creative Studio" + brandName="Graphic Design Studio" />
-
-
-
-
-
); -} \ No newline at end of file +} -- 2.49.1