Merge version_2 into main #10

Merged
bender merged 5 commits from version_2 into main 2026-02-23 12:52:33 +00:00
5 changed files with 14 additions and 9 deletions

View File

@@ -29,9 +29,10 @@ export default function BlogPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Shop", id: "/shop" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contacts" },
{ 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"

View File

@@ -22,6 +22,7 @@ export default function ContactsPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },

View File

@@ -119,6 +119,7 @@ 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"
imageAlt="Country road leading to a dairy farm"
mediaAnimation="slide-up"

View File

@@ -77,9 +77,10 @@ function ProductPageContent({ params }: ProductPageProps) {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Shop", id: "/shop" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contacts" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/contacts" }
];
const navbarProps = {

View File

@@ -44,9 +44,10 @@ function ShopPageContent() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Shop", id: "/shop" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contacts" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/contacts" }
];
const navbarProps = {