diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5c06d70..54474af 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,34 +8,37 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function AboutPage() { return ( - + - -
+ +
- + ); diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index fb8800a..6e4b57a 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -5,8 +5,10 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function CartPage() { return ( - - + +

Votre Panier

Vos articles sélectionnés.

diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 72e5b99..e2284ad 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -5,8 +5,10 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function CheckoutPage() { return ( - - + +

Paiement

Procédez au paiement sécurisé.

diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index df7b3b4..e3b68e5 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -8,20 +8,21 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function FaqPage() { return ( - + - -
+ +
- + ); diff --git a/src/app/products/[id]/page.tsx b/src/app/products/[id]/page.tsx index 38f1c3c..ac47985 100644 --- a/src/app/products/[id]/page.tsx +++ b/src/app/products/[id]/page.tsx @@ -3,13 +3,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -export default function ProductDetailPage({ params }: { params: { id: string } }) { +export default function ProductDetailPage() { return ( - - + +
-

Produit {params.id}

-

Détails du produit et options d'achat.

+

Détail du Produit

); diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx index 729ae25..c825ba4 100644 --- a/src/app/testimonials/page.tsx +++ b/src/app/testimonials/page.tsx @@ -8,20 +8,21 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function TestimonialsPage() { return ( - + - -
+ +
- + );