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