more scaffolding for mdx, content

This commit is contained in:
Mikayla Dobson
2023-05-29 14:11:23 -05:00
parent dee58ffe0a
commit 332288cc5b
7 changed files with 50 additions and 5 deletions

View File

@@ -1,11 +1,13 @@
import './globals.css'
import Navbar from '@/components/Navbar'
import { MDXProvider } from '@mdx-js/react'
import { Inter } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'Mikayla Dobson | Software Engineer',
description: 'Integrating artistry and technology to create beautiful software',
}
export default function RootLayout({
@@ -15,7 +17,14 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<MDXProvider /* components={components} */>
<body className={inter.className}>
<>
<Navbar />
{children}
</>
</body>
</MDXProvider>
</html>
)
}