more scaffolding for mdx, content
This commit is contained in:
0
app/about/resume/page.tsx
Normal file
0
app/about/resume/page.tsx
Normal file
21
app/content.mdx
Normal file
21
app/content.mdx
Normal file
@@ -0,0 +1,21 @@
|
||||
# Mikayla Dobson | Software Engineer
|
||||
|
||||
Software design at the confluence of efficiency, ingenuity, and artistry.
|
||||
|
||||
## Why do you want me on your team?
|
||||
|
||||
Here are some things I've provided for my teams in the past:
|
||||
|
||||
- Connecting the dots
|
||||
- My strength lies in the big picture. My background as a composer of classical music has given me a lasting sense
|
||||
for how to assemble the pieces of a project into a cohesive whole.
|
||||
- As a software engineer, this means:
|
||||
- I'm comfortable living in the world between the front-end and back-end
|
||||
- I love solving emergent problems as a project's stack is expanding
|
||||
|
||||
---
|
||||
|
||||
## Want to know more?
|
||||
|
||||
You're in the right place! This site is the best place to learn about the work I've done, what I know, and what I've
|
||||
done with the knowledge I have.
|
||||
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
import Content from "./content.mdx"
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main>
|
||||
<h1>Hi am Mikayla</h1>
|
||||
<Content />
|
||||
</main>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user