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
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
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
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
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