From 81de76a510a69200f833ae1476864a224d791bc5 Mon Sep 17 00:00:00 2001 From: Firman Ramdhani <33869609+firmanramdhani@users.noreply.github.com> Date: Mon, 22 Jun 2026 18:22:39 +0700 Subject: [PATCH] refactor: relocate shell-demo app to the showcase directory --- apps/web/src/apps/index.tsx | 2 +- apps/web/src/apps/{ => showcase}/shell-demo/index.tsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename apps/web/src/apps/{ => showcase}/shell-demo/index.tsx (100%) diff --git a/apps/web/src/apps/index.tsx b/apps/web/src/apps/index.tsx index ec6e524..1f5a777 100644 --- a/apps/web/src/apps/index.tsx +++ b/apps/web/src/apps/index.tsx @@ -6,7 +6,7 @@ import { NotFound, Forbidden, Maintenance, ComingSoon } from '@repo/ui/component const AuthModule = lazy(() => import('./auth')); const AppModule = lazy(() => import('./modules')); const ShowcaseView = lazy(() => import('./showcase/showcase-view')); -const ShellDemo = lazy(() => import('./shell-demo')); +const ShellDemo = lazy(() => import('./showcase/shell-demo')); export default function App() { const [colorScheme, setColorScheme] = useState('light'); diff --git a/apps/web/src/apps/shell-demo/index.tsx b/apps/web/src/apps/showcase/shell-demo/index.tsx similarity index 100% rename from apps/web/src/apps/shell-demo/index.tsx rename to apps/web/src/apps/showcase/shell-demo/index.tsx