updated page layout and folders

This commit is contained in:
Bob Burningham 2023-10-07 12:41:57 -07:00
parent ad3b195a38
commit c70041cfed
4 changed files with 3 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -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 (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={font.className}>{children}</body>
</html>
)
}