diff --git a/package.json b/package.json index d39522b..134f049 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,9 @@ "dev": "next dev --turbopack", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "next lint", + "payload:generate:types": "payload generate:types", + "payload:generate:importMap": "payload generate:importMap" }, "dependencies": { "next": "15.3.0", @@ -29,4 +31,4 @@ "typescript": "^5" }, "packageManager": "yarn@4.9.1" -} +} \ No newline at end of file diff --git a/src/app/blog/[slug]/page.tsx b/src/app/(main)/blog/[slug]/page.tsx similarity index 100% rename from src/app/blog/[slug]/page.tsx rename to src/app/(main)/blog/[slug]/page.tsx diff --git a/src/app/blog/page.tsx b/src/app/(main)/blog/page.tsx similarity index 100% rename from src/app/blog/page.tsx rename to src/app/(main)/blog/page.tsx diff --git a/src/app/favicon.ico b/src/app/(main)/favicon.ico similarity index 100% rename from src/app/favicon.ico rename to src/app/(main)/favicon.ico diff --git a/src/app/globals.css b/src/app/(main)/globals.css similarity index 100% rename from src/app/globals.css rename to src/app/(main)/globals.css diff --git a/src/app/layout.tsx b/src/app/(main)/layout.tsx similarity index 100% rename from src/app/layout.tsx rename to src/app/(main)/layout.tsx diff --git a/src/app/not-found.tsx b/src/app/(main)/not-found.tsx similarity index 100% rename from src/app/not-found.tsx rename to src/app/(main)/not-found.tsx diff --git a/src/app/page.tsx b/src/app/(main)/page.tsx similarity index 100% rename from src/app/page.tsx rename to src/app/(main)/page.tsx diff --git a/src/app/page.backup.tsx b/src/app/page.backup.tsx deleted file mode 100644 index e68abe6..0000000 --- a/src/app/page.backup.tsx +++ /dev/null @@ -1,103 +0,0 @@ -import Image from "next/image"; - -export default function Home() { - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.tsx - - . -
  2. -
  3. - Save and see your changes instantly. -
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); -}