From d7220d8981d4fceeb4bc904bfb4b17420303869d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 21:05:47 +0000 Subject: [PATCH] Update src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 95 +++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 55 deletions(-) diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx index 447562a..fe7b1ce 100644 --- a/src/app/about-us/page.tsx +++ b/src/app/about-us/page.tsx @@ -1,67 +1,52 @@ -"use client"; +'use client'; -import { ThemeProvider } from "next-themes"; -import { MediaAbout } from '@/components/sections/about/MediaAbout'; -import { NavbarLayoutFloatingInline } from '@/components/navbar/NavbarLayoutFloatingInline'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import Link from 'next/link'; export default function AboutUsPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About Us', id: '/about-us' }, + { name: 'Cart', id: '/cart' }, + { name: 'Contact', id: '/contact' }, + { name: 'Reviews', id: '/reviews' }, + { name: 'Dashboard', id: '/dashboard' }, + { name: 'Product Detail', id: '/product-detail' } + ]; + return ( - -
+ +
- - - - - - -
+
); }