Update src/app/testimonials/page.tsx

This commit is contained in:
2026-03-23 02:45:06 +00:00
parent c54ad264b1
commit ce0a737e53

View File

@@ -1,7 +1,7 @@
"use client";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { ThemeProvider } => from '@/providers/themeProvider/ThemeProvider';
export default function TestimonialsPage() {
return (
@@ -21,11 +21,11 @@ export default function TestimonialsPage() {
<NavbarStyleApple
brandName="La Parrilla"
navItems={[
{ name: "Accueil", id: "accueil" },
{ name: "Menu", id: "menu" },
{ name: "À propos", id: "a-propos" },
{ name: "Avis Clients", id: "avis-clients" },
{ name: "Contact", id: "contact" }
{ name: "Accueil", href: "/" },
{ name: "Menu", href: "/menu" },
{ name: "À propos", href: "/about" },
{ name: "Avis Clients", href: "/testimonials" },
{ name: "Contact", href: "/contact" }
]}
/>
</div>