diff --git a/app/page.tsx b/app/(main)/(routes)/page.tsx similarity index 100% rename from app/page.tsx rename to app/(main)/(routes)/page.tsx diff --git a/app/favicon.ico b/app/(main)/favicon.ico similarity index 100% rename from app/favicon.ico rename to app/(main)/favicon.ico diff --git a/app/globals.css b/app/(main)/globals.css similarity index 100% rename from app/globals.css rename to app/(main)/globals.css diff --git a/app/layout.tsx b/app/(main)/layout.tsx similarity index 67% rename from app/layout.tsx rename to app/(main)/layout.tsx index ae84562..d38dddf 100644 --- a/app/layout.tsx +++ b/app/(main)/layout.tsx @@ -1,8 +1,8 @@ import './globals.css' import type { Metadata } from 'next' -import { Inter } from 'next/font/google' +import { Open_Sans } from 'next/font/google' -const inter = Inter({ subsets: ['latin'] }) +const font = Open_Sans({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'Create Next App', @@ -16,7 +16,7 @@ export default function RootLayout({ }) { return ( - {children} + {children} ) }