Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 586dcdca2b | |||
| eacc9dde3c | |||
| 9b81713fa3 | |||
| 7ba01b8237 | |||
| 42e1720b1b | |||
| e3f57df1d2 | |||
| 53df64e794 | |||
| 04ebffdbfe | |||
| 4e37541d41 | |||
| a7ab431eef | |||
| 25c13875b0 | |||
| 484b592ef4 | |||
| db0aadafa1 | |||
| 4f1cec454c |
@@ -6,6 +6,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function BlogPage() {
|
||||
const { posts, isLoading } = useBlogPosts();
|
||||
|
||||
@@ -4,6 +4,7 @@ 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';
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function ContactsPage() {
|
||||
return (
|
||||
@@ -43,7 +44,8 @@ export default function ContactsPage() {
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us more...", rows: 5, required: true }}
|
||||
buttonText="Send Message"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/uploaded-1771850674704-2zcygfwe.mp4"
|
||||
imageSrc="/placeholders/placeholder1.webp?_wi=2"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/uploaded-1771850674704-2zcygfwe.mp4?_wi=2"
|
||||
imageAlt="People contacting a business"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -11,6 +11,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { CookingPot, Egg, Milk, Sparkles, Sprout } from "lucide-react";
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,7 +29,7 @@ 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:"/contacts"}]}
|
||||
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"
|
||||
/>
|
||||
@@ -119,8 +120,8 @@ export default function LandingPage() {
|
||||
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="/placeholders/placeholder1.webp"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/uploaded-1771850674704-2zcygfwe.mp4"
|
||||
imageSrc="/placeholders/placeholder1.webp?_wi=1"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A47KqSdGj7sEG8mcGU4TIVm5ml/uploaded-1771850674704-2zcygfwe.mp4?_wi=1"
|
||||
imageAlt="Country road leading to a dairy farm"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -11,6 +11,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart";
|
||||
import { useProductDetail } from "@/hooks/useProductDetail";
|
||||
import { useCart } from "@/hooks/useCart";
|
||||
import { useCheckout } from "@/hooks/useCheckout";
|
||||
import Link from 'next/link';
|
||||
|
||||
interface ProductPageProps {
|
||||
params: Promise<{ id: string }>;
|
||||
@@ -94,7 +95,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ 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."};
|
||||
logoText: "Find Mouse", copyrightText: "© 2024 Find Mouse. All rights reserved."
|
||||
};
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
@@ -221,4 +223,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ import { useProductCatalog } from "@/hooks/useProductCatalog";
|
||||
import { useCart } from "@/hooks/useCart";
|
||||
import { useCheckout } from "@/hooks/useCheckout";
|
||||
import ProductCart from "@/components/ecommerce/cart/ProductCart";
|
||||
import Link from 'next/link';
|
||||
|
||||
function ShopPageContent() {
|
||||
const {
|
||||
@@ -61,7 +62,8 @@ function ShopPageContent() {
|
||||
{ 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."};
|
||||
logoText: "Find Mouse", copyrightText: "© 2024 Find Mouse. All rights reserved."
|
||||
};
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user