From a252c3769b8d04c1d698eaafe45fac8148df9598 Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sat, 7 Oct 2023 23:16:49 -0700 Subject: [PATCH] removed main and moved layout back to app --- app/(main)/(routes)/page.tsx | 13 ------------- app/{(main) => }/favicon.ico | Bin app/{(main) => }/globals.css | 0 app/{(main) => }/layout.tsx | 0 4 files changed, 13 deletions(-) delete mode 100644 app/(main)/(routes)/page.tsx rename app/{(main) => }/favicon.ico (100%) rename app/{(main) => }/globals.css (100%) rename app/{(main) => }/layout.tsx (100%) diff --git a/app/(main)/(routes)/page.tsx b/app/(main)/(routes)/page.tsx deleted file mode 100644 index 937a04c..0000000 --- a/app/(main)/(routes)/page.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { ModeToggle } from "@/components/mode-toggle"; -import { UserButton } from "@clerk/nextjs"; - -export default function Home() { - return ( -
- - -
- ) -} diff --git a/app/(main)/favicon.ico b/app/favicon.ico similarity index 100% rename from app/(main)/favicon.ico rename to app/favicon.ico diff --git a/app/(main)/globals.css b/app/globals.css similarity index 100% rename from app/(main)/globals.css rename to app/globals.css diff --git a/app/(main)/layout.tsx b/app/layout.tsx similarity index 100% rename from app/(main)/layout.tsx rename to app/layout.tsx