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 ( - -
+ +
- - - - - - -
+
); }