From 880e06f46e4ba8d6378bcf7bacced5a11f6bc4be Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:17:52 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 76f5309..675b8a4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -30,6 +30,7 @@ export default function BlogPage() { navItems={[ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} -- 2.49.1 From 28019cfe35904cb96ab7b73be3fa369eb53e4a87 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:17:52 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 50592e4..4935065 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,9 +3,8 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Mail } from 'lucide-react'; export default function ContactPage() { return ( @@ -28,6 +27,7 @@ export default function ContactPage() { navItems={[ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} @@ -39,29 +39,28 @@ export default function ContactPage() {
- console.log("Contact form submitted with email:", email)} - background={{ variant: "plain" }} + inputs={[ + { name: 'name', type: 'text', placeholder: 'Name', required: true }, + { name: 'email', type: 'email', placeholder: 'Email', required: true }, + ]} + textarea={{ name: 'message', placeholder: 'Type your message...', rows: 5, required: true }} useInvertedBackground={false} + imageSrc="https://img.b2bpic.net/free-photo/caucasian-florist-woman-inside-flower-shop_53876-26300.jpg" + mediaAnimation="slide-up" + mediaPosition="right" + buttonText="Send Message" + onSubmit={(data) => console.log("Contact form submitted with data:", data)} + ariaLabel="Contact section" className="py-16 md:py-24" - containerClassName="max-w-screen-md mx-auto px-6 md:px-8" - contentClassName="bg-card rounded-soft shadow-lg p-8" - tagClassName="text-primary-cta text-sm font-semibold uppercase tracking-wider" + containerClassName="max-w-screen-xl mx-auto px-6 md:px-8" + formCardClassName="bg-card rounded-soft shadow-lg p-8" titleClassName="text-foreground text-4xl md:text-5xl font-bold mb-4" descriptionClassName="text-foreground/80 text-lg md:text-xl mb-8" - formWrapperClassName="mt-8" - formClassName="flex flex-col gap-4" - inputClassName="bg-background-accent/30 border border-border-color focus:border-primary-cta focus:ring-1 focus:ring-primary-cta transition-colors duration-200 rounded-md p-3" buttonClassName="primary-button px-6 py-3" buttonTextClassName="font-semibold" - termsClassName="text-foreground/60 text-sm mt-4" />
-- 2.49.1 From a4018e8923998552cd99f5fcb8c1ed9ada37f759 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:17:53 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cea5fab..a7a37e6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,6 +30,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} @@ -184,7 +185,7 @@ export default function LandingPage() { Date: Mon, 23 Feb 2026 13:17:54 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 9b65ffb..985f8c5 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -92,7 +92,7 @@ function ProductPageContent({ params }: ProductPageProps) {