From c2d94a349c851a1867daeb5e9557bbf402b67f9c Mon Sep 17 00:00:00 2001 From: Thibault Pouch Date: Thu, 26 Feb 2026 16:16:44 +0100 Subject: [PATCH] chore : move all to root --- nest-front/{client => }/README.md | 0 nest-front/{client => }/eslint.config.js | 0 nest-front/{client => }/index.html | 0 nest-front/{client => }/package-lock.json | 0 nest-front/{client => }/package.json | 0 nest-front/{client => }/public/manifest.json | 0 nest-front/{client => }/public/vite.svg | 0 nest-front/{client => }/src/App.css | 0 nest-front/{client => }/src/App.tsx | 0 nest-front/{client => }/src/assets/react.svg | 0 nest-front/{client => }/src/components/layout/IntranetLayout.tsx | 0 nest-front/{client => }/src/components/layout/PublicLayout.tsx | 0 nest-front/{client => }/src/components/shared/DevRoleSwitcher.tsx | 0 nest-front/{client => }/src/components/shared/Footer.tsx | 0 nest-front/{client => }/src/components/shared/Navbar.tsx | 0 nest-front/{client => }/src/components/shared/PageLoader.tsx | 0 nest-front/{client => }/src/components/shared/ProtectedRoute.tsx | 0 nest-front/{client => }/src/contexts/AuthContext.tsx | 0 nest-front/{client => }/src/data/mockData.ts | 0 nest-front/{client => }/src/index.css | 0 nest-front/{client => }/src/main.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetBugs.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetDashboard.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetEvents.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetFeed.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetModeration.tsx | 0 nest-front/{client => }/src/pages/intranet/IntranetUsers.tsx | 0 nest-front/{client => }/src/pages/public/AccountPage.tsx | 0 nest-front/{client => }/src/pages/public/BugDetailPage.tsx | 0 nest-front/{client => }/src/pages/public/BugReportPage.tsx | 0 nest-front/{client => }/src/pages/public/EventsPage.tsx | 0 nest-front/{client => }/src/pages/public/ForumPage.tsx | 0 nest-front/{client => }/src/pages/public/HomePage.tsx | 0 nest-front/{client => }/src/pages/public/LoginPage.tsx | 0 nest-front/{client => }/src/pages/public/NotFoundPage.tsx | 0 nest-front/{client => }/src/pages/public/RegisterPage.tsx | 0 nest-front/{client => }/src/pages/public/StudioPage.tsx | 0 nest-front/{client => }/src/pages/public/ThreadPage.tsx | 0 nest-front/{client => }/src/types/index.ts | 0 nest-front/{client => }/src/utils/format.ts | 0 nest-front/{client => }/tsconfig.app.json | 0 nest-front/{client => }/tsconfig.json | 0 nest-front/{client => }/tsconfig.node.json | 0 nest-front/{client => }/vite.config.ts | 0 44 files changed, 0 insertions(+), 0 deletions(-) rename nest-front/{client => }/README.md (100%) rename nest-front/{client => }/eslint.config.js (100%) rename nest-front/{client => }/index.html (100%) rename nest-front/{client => }/package-lock.json (100%) rename nest-front/{client => }/package.json (100%) rename nest-front/{client => }/public/manifest.json (100%) rename nest-front/{client => }/public/vite.svg (100%) rename nest-front/{client => }/src/App.css (100%) rename nest-front/{client => }/src/App.tsx (100%) rename nest-front/{client => }/src/assets/react.svg (100%) rename nest-front/{client => }/src/components/layout/IntranetLayout.tsx (100%) rename nest-front/{client => }/src/components/layout/PublicLayout.tsx (100%) rename nest-front/{client => }/src/components/shared/DevRoleSwitcher.tsx (100%) rename nest-front/{client => }/src/components/shared/Footer.tsx (100%) rename nest-front/{client => }/src/components/shared/Navbar.tsx (100%) rename nest-front/{client => }/src/components/shared/PageLoader.tsx (100%) rename nest-front/{client => }/src/components/shared/ProtectedRoute.tsx (100%) rename nest-front/{client => }/src/contexts/AuthContext.tsx (100%) rename nest-front/{client => }/src/data/mockData.ts (100%) rename nest-front/{client => }/src/index.css (100%) rename nest-front/{client => }/src/main.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetBugs.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetDashboard.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetEvents.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetFeed.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetModeration.tsx (100%) rename nest-front/{client => }/src/pages/intranet/IntranetUsers.tsx (100%) rename nest-front/{client => }/src/pages/public/AccountPage.tsx (100%) rename nest-front/{client => }/src/pages/public/BugDetailPage.tsx (100%) rename nest-front/{client => }/src/pages/public/BugReportPage.tsx (100%) rename nest-front/{client => }/src/pages/public/EventsPage.tsx (100%) rename nest-front/{client => }/src/pages/public/ForumPage.tsx (100%) rename nest-front/{client => }/src/pages/public/HomePage.tsx (100%) rename nest-front/{client => }/src/pages/public/LoginPage.tsx (100%) rename nest-front/{client => }/src/pages/public/NotFoundPage.tsx (100%) rename nest-front/{client => }/src/pages/public/RegisterPage.tsx (100%) rename nest-front/{client => }/src/pages/public/StudioPage.tsx (100%) rename nest-front/{client => }/src/pages/public/ThreadPage.tsx (100%) rename nest-front/{client => }/src/types/index.ts (100%) rename nest-front/{client => }/src/utils/format.ts (100%) rename nest-front/{client => }/tsconfig.app.json (100%) rename nest-front/{client => }/tsconfig.json (100%) rename nest-front/{client => }/tsconfig.node.json (100%) rename nest-front/{client => }/vite.config.ts (100%) diff --git a/nest-front/client/README.md b/nest-front/README.md similarity index 100% rename from nest-front/client/README.md rename to nest-front/README.md diff --git a/nest-front/client/eslint.config.js b/nest-front/eslint.config.js similarity index 100% rename from nest-front/client/eslint.config.js rename to nest-front/eslint.config.js diff --git a/nest-front/client/index.html b/nest-front/index.html similarity index 100% rename from nest-front/client/index.html rename to nest-front/index.html diff --git a/nest-front/client/package-lock.json b/nest-front/package-lock.json similarity index 100% rename from nest-front/client/package-lock.json rename to nest-front/package-lock.json diff --git a/nest-front/client/package.json b/nest-front/package.json similarity index 100% rename from nest-front/client/package.json rename to nest-front/package.json diff --git a/nest-front/client/public/manifest.json b/nest-front/public/manifest.json similarity index 100% rename from nest-front/client/public/manifest.json rename to nest-front/public/manifest.json diff --git a/nest-front/client/public/vite.svg b/nest-front/public/vite.svg similarity index 100% rename from nest-front/client/public/vite.svg rename to nest-front/public/vite.svg diff --git a/nest-front/client/src/App.css b/nest-front/src/App.css similarity index 100% rename from nest-front/client/src/App.css rename to nest-front/src/App.css diff --git a/nest-front/client/src/App.tsx b/nest-front/src/App.tsx similarity index 100% rename from nest-front/client/src/App.tsx rename to nest-front/src/App.tsx diff --git a/nest-front/client/src/assets/react.svg b/nest-front/src/assets/react.svg similarity index 100% rename from nest-front/client/src/assets/react.svg rename to nest-front/src/assets/react.svg diff --git a/nest-front/client/src/components/layout/IntranetLayout.tsx b/nest-front/src/components/layout/IntranetLayout.tsx similarity index 100% rename from nest-front/client/src/components/layout/IntranetLayout.tsx rename to nest-front/src/components/layout/IntranetLayout.tsx diff --git a/nest-front/client/src/components/layout/PublicLayout.tsx b/nest-front/src/components/layout/PublicLayout.tsx similarity index 100% rename from nest-front/client/src/components/layout/PublicLayout.tsx rename to nest-front/src/components/layout/PublicLayout.tsx diff --git a/nest-front/client/src/components/shared/DevRoleSwitcher.tsx b/nest-front/src/components/shared/DevRoleSwitcher.tsx similarity index 100% rename from nest-front/client/src/components/shared/DevRoleSwitcher.tsx rename to nest-front/src/components/shared/DevRoleSwitcher.tsx diff --git a/nest-front/client/src/components/shared/Footer.tsx b/nest-front/src/components/shared/Footer.tsx similarity index 100% rename from nest-front/client/src/components/shared/Footer.tsx rename to nest-front/src/components/shared/Footer.tsx diff --git a/nest-front/client/src/components/shared/Navbar.tsx b/nest-front/src/components/shared/Navbar.tsx similarity index 100% rename from nest-front/client/src/components/shared/Navbar.tsx rename to nest-front/src/components/shared/Navbar.tsx diff --git a/nest-front/client/src/components/shared/PageLoader.tsx b/nest-front/src/components/shared/PageLoader.tsx similarity index 100% rename from nest-front/client/src/components/shared/PageLoader.tsx rename to nest-front/src/components/shared/PageLoader.tsx diff --git a/nest-front/client/src/components/shared/ProtectedRoute.tsx b/nest-front/src/components/shared/ProtectedRoute.tsx similarity index 100% rename from nest-front/client/src/components/shared/ProtectedRoute.tsx rename to nest-front/src/components/shared/ProtectedRoute.tsx diff --git a/nest-front/client/src/contexts/AuthContext.tsx b/nest-front/src/contexts/AuthContext.tsx similarity index 100% rename from nest-front/client/src/contexts/AuthContext.tsx rename to nest-front/src/contexts/AuthContext.tsx diff --git a/nest-front/client/src/data/mockData.ts b/nest-front/src/data/mockData.ts similarity index 100% rename from nest-front/client/src/data/mockData.ts rename to nest-front/src/data/mockData.ts diff --git a/nest-front/client/src/index.css b/nest-front/src/index.css similarity index 100% rename from nest-front/client/src/index.css rename to nest-front/src/index.css diff --git a/nest-front/client/src/main.tsx b/nest-front/src/main.tsx similarity index 100% rename from nest-front/client/src/main.tsx rename to nest-front/src/main.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetBugs.tsx b/nest-front/src/pages/intranet/IntranetBugs.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetBugs.tsx rename to nest-front/src/pages/intranet/IntranetBugs.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetDashboard.tsx b/nest-front/src/pages/intranet/IntranetDashboard.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetDashboard.tsx rename to nest-front/src/pages/intranet/IntranetDashboard.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetEvents.tsx b/nest-front/src/pages/intranet/IntranetEvents.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetEvents.tsx rename to nest-front/src/pages/intranet/IntranetEvents.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetFeed.tsx b/nest-front/src/pages/intranet/IntranetFeed.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetFeed.tsx rename to nest-front/src/pages/intranet/IntranetFeed.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetModeration.tsx b/nest-front/src/pages/intranet/IntranetModeration.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetModeration.tsx rename to nest-front/src/pages/intranet/IntranetModeration.tsx diff --git a/nest-front/client/src/pages/intranet/IntranetUsers.tsx b/nest-front/src/pages/intranet/IntranetUsers.tsx similarity index 100% rename from nest-front/client/src/pages/intranet/IntranetUsers.tsx rename to nest-front/src/pages/intranet/IntranetUsers.tsx diff --git a/nest-front/client/src/pages/public/AccountPage.tsx b/nest-front/src/pages/public/AccountPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/AccountPage.tsx rename to nest-front/src/pages/public/AccountPage.tsx diff --git a/nest-front/client/src/pages/public/BugDetailPage.tsx b/nest-front/src/pages/public/BugDetailPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/BugDetailPage.tsx rename to nest-front/src/pages/public/BugDetailPage.tsx diff --git a/nest-front/client/src/pages/public/BugReportPage.tsx b/nest-front/src/pages/public/BugReportPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/BugReportPage.tsx rename to nest-front/src/pages/public/BugReportPage.tsx diff --git a/nest-front/client/src/pages/public/EventsPage.tsx b/nest-front/src/pages/public/EventsPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/EventsPage.tsx rename to nest-front/src/pages/public/EventsPage.tsx diff --git a/nest-front/client/src/pages/public/ForumPage.tsx b/nest-front/src/pages/public/ForumPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/ForumPage.tsx rename to nest-front/src/pages/public/ForumPage.tsx diff --git a/nest-front/client/src/pages/public/HomePage.tsx b/nest-front/src/pages/public/HomePage.tsx similarity index 100% rename from nest-front/client/src/pages/public/HomePage.tsx rename to nest-front/src/pages/public/HomePage.tsx diff --git a/nest-front/client/src/pages/public/LoginPage.tsx b/nest-front/src/pages/public/LoginPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/LoginPage.tsx rename to nest-front/src/pages/public/LoginPage.tsx diff --git a/nest-front/client/src/pages/public/NotFoundPage.tsx b/nest-front/src/pages/public/NotFoundPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/NotFoundPage.tsx rename to nest-front/src/pages/public/NotFoundPage.tsx diff --git a/nest-front/client/src/pages/public/RegisterPage.tsx b/nest-front/src/pages/public/RegisterPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/RegisterPage.tsx rename to nest-front/src/pages/public/RegisterPage.tsx diff --git a/nest-front/client/src/pages/public/StudioPage.tsx b/nest-front/src/pages/public/StudioPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/StudioPage.tsx rename to nest-front/src/pages/public/StudioPage.tsx diff --git a/nest-front/client/src/pages/public/ThreadPage.tsx b/nest-front/src/pages/public/ThreadPage.tsx similarity index 100% rename from nest-front/client/src/pages/public/ThreadPage.tsx rename to nest-front/src/pages/public/ThreadPage.tsx diff --git a/nest-front/client/src/types/index.ts b/nest-front/src/types/index.ts similarity index 100% rename from nest-front/client/src/types/index.ts rename to nest-front/src/types/index.ts diff --git a/nest-front/client/src/utils/format.ts b/nest-front/src/utils/format.ts similarity index 100% rename from nest-front/client/src/utils/format.ts rename to nest-front/src/utils/format.ts diff --git a/nest-front/client/tsconfig.app.json b/nest-front/tsconfig.app.json similarity index 100% rename from nest-front/client/tsconfig.app.json rename to nest-front/tsconfig.app.json diff --git a/nest-front/client/tsconfig.json b/nest-front/tsconfig.json similarity index 100% rename from nest-front/client/tsconfig.json rename to nest-front/tsconfig.json diff --git a/nest-front/client/tsconfig.node.json b/nest-front/tsconfig.node.json similarity index 100% rename from nest-front/client/tsconfig.node.json rename to nest-front/tsconfig.node.json diff --git a/nest-front/client/vite.config.ts b/nest-front/vite.config.ts similarity index 100% rename from nest-front/client/vite.config.ts rename to nest-front/vite.config.ts