diff --git a/Dockerfile.business b/Dockerfile.business index d8c7c77..e3eb9e0 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -74,21 +74,89 @@ RUN mkdir -p .techradar/data && \ echo "📁 VĂ©rification que team.html existe dans public/ source:" && \ test -f public/team.html && echo "✅ public/team.html existe" || echo "❌ public/team.html n'existe pas" -# CrĂ©er la page Next.js /team et modifier Navigation -RUN chmod +x scripts/create-team-page.sh && \ - echo "🚀 ExĂ©cution de create-team-page.sh..." && \ - echo "📋 VĂ©rification que Navigation.tsx existe:" && \ - test -f .techradar/src/components/Navigation/Navigation.tsx && echo "✅ Navigation.tsx existe" || (echo "❌ Navigation.tsx n'existe pas" && ls -la .techradar/src/components/Navigation/ 2>/dev/null && exit 1) && \ - echo "📋 État de Navigation.tsx AVANT modification:" && \ - grep -A 3 'href="/overview"' .techradar/src/components/Navigation/Navigation.tsx || echo "Pattern overview non trouvĂ©" && \ - echo "" && \ - ./scripts/create-team-page.sh || (echo "❌ Script create-team-page.sh a Ă©chouĂ©" && cat .techradar/src/components/Navigation/Navigation.tsx && exit 1) && \ - echo "✅ Script create-team-page.sh terminĂ©" && \ - echo "" && \ - echo "📋 VĂ©rification de Navigation.tsx:" && \ - grep -q 'href="/team"' .techradar/src/components/Navigation/Navigation.tsx && echo "✅ Lien Équipe trouvĂ©" || (echo "❌ Lien Équipe NON trouvĂ©" && cat .techradar/src/components/Navigation/Navigation.tsx && exit 1) && \ - echo "📋 VĂ©rification de team.tsx:" && \ - test -f .techradar/src/pages/team.tsx && echo "✅ team.tsx existe" || (echo "❌ team.tsx n'existe pas" && ls -la .techradar/src/pages/ 2>/dev/null && exit 1) +# CrĂ©er la page Next.js /team +RUN mkdir -p .techradar/src/pages && \ + cat > .techradar/src/pages/team.tsx << 'EOF' && \ +import Head from "next/head"; +import { CustomPage } from "@/pages/_app"; + +const TeamPage: CustomPage = () => { + return ( + <> + + Équipe & Technologies - Laplank + +
+