Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-02-19 12:54:05 +00:00
3 changed files with 29 additions and 29 deletions

View File

@@ -35,13 +35,13 @@ export default function BlogPage() {
brandName="Iminio"
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "about" },
{ name: "Services", id: "services" },
{ name: "Gallery", id: "gallery" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact-us" },
{ name: "About Us", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Gallery", id: "/#gallery" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact-us" },
]}
button={{ text: "Order Now", href: "#contact-us" }}
button={{ text: "Order Now", href: "/#contact-us" }}
/>
</div>
@@ -68,17 +68,17 @@ export default function BlogPage() {
columns={[
{
title: "Explore Iminio", items: [
{ label: "Home", href: "#hero" },
{ label: "Our Story", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Gallery", href: "#gallery" },
{ label: "Home", href: "/" },
{ label: "Our Story", href: "/#about" },
{ label: "Services", href: "/#services" },
{ label: "Gallery", href: "/#gallery" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact-us" },
{ label: "Delivery Info", href: "#contact-us" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "/#contact-us" },
{ label: "Delivery Info", href: "/#contact-us" },
],
},
{

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import { use, useCallback } from "react";
import { useRouter } from "next/navigation";
@@ -205,17 +205,17 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Explore Iminio", items: [
{ label: "Home", href: "#hero" },
{ label: "Our Story", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Gallery", href: "#gallery" }
{ label: "Home", href: "/" },
{ label: "Our Story", href: "/#about" },
{ label: "Services", href: "/#services" },
{ label: "Gallery", href: "/#gallery" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact-us" },
{ label: "Delivery Info", href: "#contact-us" }
{ label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "/#contact-us" },
{ label: "Delivery Info", href: "/#contact-us" }
]
},
{

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -129,17 +129,17 @@ export default function ShopPage() {
columns={[
{
title: "Explore Iminio", items: [
{ label: "Home", href: "#hero" },
{ label: "Our Story", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Gallery", href: "#gallery" }
{ label: "Home", href: "/" },
{ label: "Our Story", href: "/#about" },
{ label: "Services", href: "/#services" },
{ label: "Gallery", href: "/#gallery" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact-us" },
{ label: "Delivery Info", href: "#contact-us" }
{ label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "/#contact-us" },
{ label: "Delivery Info", href: "/#contact-us" }
]
},
{