3 Commits

Author SHA1 Message Date
34c2721fa9 Update src/app/nutrition/page.tsx 2026-06-12 01:49:25 +00:00
87c9d7c40b Update src/app/abdo-epais/page.tsx 2026-06-12 01:49:25 +00:00
69ad485c55 Merge version_2 into main
Merge version_2 into main
2026-06-12 01:37:11 +00:00
2 changed files with 18 additions and 11 deletions

View File

@@ -28,6 +28,9 @@ export default function AbdoEpaisPage() {
navItems={[ navItems={[
{ name: "Accueil", id: "/" }, { name: "Accueil", id: "/" },
{ name: "Abdo Épais", id: "/abdo-epais" }, { name: "Abdo Épais", id: "/abdo-epais" },
{ name: "Programme Split", id: "/split-program" },
{ name: "Programme Corps Complet", id: "/programme-corps-complet" },
{ name: "Nutrition", id: "/nutrition" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="Alpha Fitness" brandName="Alpha Fitness"
@@ -112,14 +115,17 @@ export default function AbdoEpaisPage() {
columns={[ columns={[
{ {
title: "Programmes", items: [ title: "Programmes", items: [
{ label: "Abdo Épais", href: "/abdo-epais" } { label: "Abdo Épais", href: "/abdo-epais" },
{ label: "Programme Split", href: "/split-program" },
{ label: "Programme Corps Complet", href: "/programme-corps-complet" },
{ label: "Nutrition", href: "/nutrition" }
] ]
}, },
{ {
title: "À Propos", items: [ title: "À Propos", items: [
{ label: "Notre Histoire", href: "/#about" }, { label: "Notre Histoire", href: "/#hero" },
{ label: "Témoignages", href: "/#testimonials" }, { label: "Témoignages", href: "/#testimonials" },
{ label: "FAQ", href: "/#faq" } { label: "FAQ", href: "/nutrition#macros-faq" }
] ]
}, },
{ {

View File

@@ -33,6 +33,8 @@ export default function LandingPage() {
name: "Abdo Épais", id: "/abdo-epais"}, name: "Abdo Épais", id: "/abdo-epais"},
{ {
name: "Programme Split", id: "/split-program"}, name: "Programme Split", id: "/split-program"},
{
name: "Programme Corps Complet", id: "/programme-corps-complet"},
{ {
name: "Nutrition", id: "/nutrition"}, name: "Nutrition", id: "/nutrition"},
{ {
@@ -153,18 +155,17 @@ export default function LandingPage() {
label: "Abdo Épais", href: "/abdo-epais"}, label: "Abdo Épais", href: "/abdo-epais"},
{ {
label: "Programme Split", href: "/split-program"}, label: "Programme Split", href: "/split-program"},
{
label: "Programme Corps Complet", href: "/programme-corps-complet"},
{ {
label: "Nutrition", href: "/nutrition"}, label: "Nutrition", href: "/nutrition"},
], ],
}, },
{ {
title: "À Propos", items: [ title: "À Propos", items: [
{ { label: "Notre Histoire", href: "/#hero" },
label: "Notre Histoire", href: "/#about"}, { label: "Témoignages", href: "/#testimonials" },
{ { label: "FAQ", href: "/nutrition#macros-faq" }
label: "Témoignages", href: "/#testimonials"},
{
label: "FAQ", href: "/#faq"},
], ],
}, },
{ {