more scaffolding for mdx, content
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user