From c70041cfed9700054a9f9cf95932a23724a3103e Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sat, 7 Oct 2023 12:41:57 -0700 Subject: [PATCH] updated page layout and folders --- app/{ => (main)/(routes)}/page.tsx | 0 app/{ => (main)}/favicon.ico | Bin app/{ => (main)}/globals.css | 0 app/{ => (main)}/layout.tsx | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) rename app/{ => (main)/(routes)}/page.tsx (100%) rename app/{ => (main)}/favicon.ico (100%) rename app/{ => (main)}/globals.css (100%) rename app/{ => (main)}/layout.tsx (67%) 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} ) }