From ea69f9c245f113ed5efde602995375b3792c7a7d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:49:45 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b856845..a418950 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -31,6 +31,7 @@ export default function BlogPage() { { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contacts" }, ]} button={{ text: "Shop Now", href: "/shop" }} brandName="Find Mouse" @@ -60,9 +61,9 @@ export default function BlogPage() { imageSrc="https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=2" imageAlt="Scenic dairy farm landscape" columns={[ - { title: "Shop", items: [{ label: "Milk", href: "products" }, { label: "Cheese", href: "products" }, { label: "Specials", href: "products" }] }, - { title: "About Us", items: [{ label: "Our Story", href: "about" }, { label: "Sustainability", href: "about" }, { label: "Team", href: "#" }] }, - { title: "Support", items: [{ label: "FAQ", href: "faq" }, { label: "Contact", href: "contact" }, { label: "Privacy Policy", href: "#" }] } + { title: "Shop", items: [{ label: "Milk", href: "/shop" }, { label: "Cheese", href: "/shop" }, { label: "Specials", href: "/shop" }] }, + { title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Sustainability", href: "/#about" }, { label: "Team", href: "#" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/contacts" }, { label: "Privacy Policy", href: "#" }] } ]} logoText="Find Mouse" copyrightText="© 2024 Find Mouse. All rights reserved." @@ -71,4 +72,4 @@ export default function BlogPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 5ef53185a5d673afbc58263e4d160fbbd2c7b489 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:49:46 +0000 Subject: [PATCH 2/5] Add src/app/contacts/page.tsx --- src/app/contacts/page.tsx | 68 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/app/contacts/page.tsx diff --git a/src/app/contacts/page.tsx b/src/app/contacts/page.tsx new file mode 100644 index 0000000..6af2031 --- /dev/null +++ b/src/app/contacts/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactsPage() { + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file -- 2.49.1 From d886b3c059caf99b556955e36ec40d975dbf3ea2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:49:46 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a0592fc..c8d7b3d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,8 +28,8 @@ export default function LandingPage() { > @@ -39,13 +39,10 @@ export default function LandingPage() { description="Discover the wholesome goodness of our farm-fresh milk and handcrafted cheeses, made with passion and tradition." background={{variant:"radial-gradient"}} tag="Naturally Delicious" - buttons={[{text:"Explore Products",href:"products"},{text:"Our Story",href:"about"}]} + buttons={[{text:"Explore Products",href:"/shop"},{text:"Our Story",href:"#about"}]} dashboard={{ title: "Dairy Delights", stats: [ - {title:"Years Crafting",values:[30,35,40],valuePrefix:"",description:"Of artisanal excellence."}, - {title:"Happy Cows",values:[100,120,150],valuePrefix:"",description:"Grazing our green pastures."}, - {title:"Cheese Varieties",values:[15,20,25],description:"Handcrafted with care."} - ], + {title:"Years Crafting",values:[30,35,40],valuePrefix:"",description:"Of artisanal excellence."}, {title:"Happy Cows",values:[100,120,150],valuePrefix:"",description:"Grazing our green pastures."}, {title:"Cheese Varieties",values:[15,20,25],description:"Handcrafted with care."} ], logoIcon: Sparkles, sidebarItems: [{icon:Milk,active:true},{icon:CookingPot},{icon:Sprout}], buttons: [{text:"Farm Tour",href:"#"},{text:"Recipes",href:"#"}], @@ -134,11 +131,11 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From ed4bb1bab3821bc06285f35aa9a1fd862c6e0c31 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:49:47 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 9e52339..12ecc11 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -79,6 +79,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contacts" }, ]; const navbarProps = { @@ -88,9 +89,9 @@ function ProductPageContent({ params }: ProductPageProps) { const footerProps = { imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=4", imageAlt: "Scenic dairy farm landscape", columns: [ - { title: "Shop", items: [{ label: "Milk", href: "products" }, { label: "Cheese", href: "products" }, { label: "Specials", href: "products" }] }, - { title: "About Us", items: [{ label: "Our Story", href: "about" }, { label: "Sustainability", href: "about" }, { label: "Team", href: "#" }] }, - { title: "Support", items: [{ label: "FAQ", href: "faq" }, { label: "Contact", href: "contact" }, { label: "Privacy Policy", href: "#" }] } + { title: "Shop", items: [{ label: "Milk", href: "/shop" }, { label: "Cheese", href: "/shop" }, { label: "Specials", href: "/shop" }] }, + { title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Sustainability", href: "/#about" }, { label: "Team", href: "#" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/contacts" }, { label: "Privacy Policy", href: "#" }] } ], logoText: "Find Mouse", copyrightText: "© 2024 Find Mouse. All rights reserved."}; @@ -219,4 +220,4 @@ function ProductPageContent({ params }: ProductPageProps) { ); -} +} \ No newline at end of file -- 2.49.1 From eaee75c6ae866ac5b0312883fc3080b8bb4c9c89 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:49:48 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8b81590..08e78e7 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -46,6 +46,7 @@ function ShopPageContent() { { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contacts" }, ]; const navbarProps = { @@ -55,9 +56,9 @@ function ShopPageContent() { const footerProps = { imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=3", imageAlt: "Scenic dairy farm landscape", columns: [ - { title: "Shop", items: [{ label: "Milk", href: "products" }, { label: "Cheese", href: "products" }, { label: "Specials", href: "products" }] }, - { title: "About Us", items: [{ label: "Our Story", href: "about" }, { label: "Sustainability", href: "about" }, { label: "Team", href: "#" }] }, - { title: "Support", items: [{ label: "FAQ", href: "faq" }, { label: "Contact", href: "contact" }, { label: "Privacy Policy", href: "#" }] } + { title: "Shop", items: [{ label: "Milk", href: "/shop" }, { label: "Cheese", href: "/shop" }, { label: "Specials", href: "/shop" }] }, + { title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Sustainability", href: "/#about" }, { label: "Team", href: "#" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/contacts" }, { label: "Privacy Policy", href: "#" }] } ], logoText: "Find Mouse", copyrightText: "© 2024 Find Mouse. All rights reserved."}; @@ -147,4 +148,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file -- 2.49.1