From ecc4c2eade554d3ca46098e8dccd0495638cfab1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 04:32:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a1be1dc..f3c08eb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,8 +13,8 @@ import { Bernoru } from "next/font/google"; export const metadata: Metadata = { - title: 'Cream First | Souvenir & Merchandise Shop', - description: 'Discover your new favorite mugs, tees, and hoodies at Cream First. High-quality merch with a cozy touch.', + title: 'Welcome to Our Website', + description: 'Premium solutions for your business needs.', openGraph: { "siteName": "Cream First" }, -- 2.49.1 From c7a339b324da831bfc59f2a6a579df23755808ff Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 04:32:08 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 261 ++++++++--------------------------------------- 1 file changed, 44 insertions(+), 217 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6160dd1..0042ce2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,223 +1,50 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Coffee, CheckCircle, Leaf, Zap, Heart } from "lucide-react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { Shield, Users, Zap, CheckCircle } from "lucide-react"; -export default function LandingPage() { +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1