Merge version_2 into main #9
@@ -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() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
68
src/app/contacts/page.tsx
Normal file
68
src/app/contacts/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Products", id: "/#products" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/contacts" }
|
||||
]}
|
||||
button={{ text: "Shop Now", href: "/shop" }}
|
||||
brandName="Find Mouse"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-page-section" data-section="contact-page-section">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch with Find Mouse"
|
||||
description="Have questions about our products, farm tours, or special orders? We'd love to hear from you!"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us more...", rows: 5, required: true }}
|
||||
buttonText="Send Message"
|
||||
imageSrc="https://images.unsplash.com/photo-1542382103-627729036785?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
|
||||
imageAlt="People contacting a business"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Contact form for Find Mouse"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=1"
|
||||
imageAlt="Scenic dairy farm landscape"
|
||||
columns={[
|
||||
{ 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."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -28,8 +28,8 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[{name:"About",id:"about"},{name:"Products",id:"products"},{name:"Testimonials",id:"testimonials"},{name:"FAQ",id:"faq"},{name:"Contact",id:"contact"}]}
|
||||
button={{text:"Shop Now",href:"products"}}
|
||||
navItems={[{name:"About",id:"/#about"},{name:"Products",id:"/#products"},{name:"Testimonials",id:"/#testimonials"},{name:"FAQ",id:"/#faq"},{name:"Contact",id:"/contacts"}]}
|
||||
button={{text:"Shop Now",href:"/shop"}}
|
||||
brandName="Find Mouse"
|
||||
/>
|
||||
</div>
|
||||
@@ -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() {
|
||||
<FooterMedia
|
||||
imageSrc="https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=1"
|
||||
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:"#"}]}]}
|
||||
columns={[{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."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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() {
|
||||
<ShopPageContent />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user