diff --git a/app/about/resume/page.tsx b/app/about/resume/page.tsx new file mode 100644 index 0000000..e69de29 diff --git a/app/content.mdx b/app/content.mdx new file mode 100644 index 0000000..ad2fdac --- /dev/null +++ b/app/content.mdx @@ -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. diff --git a/app/layout.tsx b/app/layout.tsx index 71b3fbf..f6d39b3 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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 ( -
{children} +