Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #11.
This commit is contained in:
2026-03-25 11:20:29 +00:00
2 changed files with 15 additions and 14 deletions

View File

@@ -5,13 +5,13 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home", href: "/" },
{ name: "About", href: "/about" },
{ name: "Menu", id: "menu", href: "/menu" },
{ name: "Products", href: "/products" },
{ name: "Book Table", id: "book-table", href: "/book-table" },
{ name: "Gallery", id: "gallery", href: "/gallery" },
{ name: "Contact", id: "contact", href: "/contact" }
{ name: "Home", id: "/", href: "/" },
{ name: "About", id: "/about", href: "/about" },
{ name: "Menu", id: "/menu", href: "/menu" },
{ name: "Products", id: "/products", href: "/products" },
{ name: "Book Table", id: "/book-table", href: "/book-table" },
{ name: "Gallery", id: "/gallery", href: "/gallery" },
{ name: "Contact", id: "/contact", href: "/contact" }
];
return (

View File

@@ -5,13 +5,13 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function ProductsPage() {
const navItems = [
{ name: "Home", id: "home", href: "/" },
{ name: "About", href: "/about" },
{ name: "Menu", id: "menu", href: "/menu" },
{ name: "Products", href: "/products" },
{ name: "Book Table", id: "book-table", href: "/book-table" },
{ name: "Gallery", id: "gallery", href: "/gallery" },
{ name: "Contact", id: "contact", href: "/contact" }
{ name: "Home", id: "/", href: "/" },
{ name: "About", id: "/about", href: "/about" },
{ name: "Menu", id: "/menu", href: "/menu" },
{ name: "Products", id: "/products", href: "/products" },
{ name: "Book Table", id: "/book-table", href: "/book-table" },
{ name: "Gallery", id: "/gallery", href: "/gallery" },
{ name: "Contact", id: "/contact", href: "/contact" }
];
return (
@@ -47,6 +47,7 @@ export default function ProductsPage() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
/>
</div>
</ThemeProvider>