From 332288cc5b359c4f41ef6548815ce03c05c2ddbb Mon Sep 17 00:00:00 2001 From: Mikayla Dobson <93477693+innocuous-symmetry@users.noreply.github.com> Date: Mon, 29 May 2023 14:11:23 -0500 Subject: [PATCH] more scaffolding for mdx, content --- app/about/resume/page.tsx | 0 app/content.mdx | 21 +++++++++++++++++++++ app/layout.tsx | 17 +++++++++++++---- app/page.tsx | 4 +++- components/Navbar.tsx | 8 ++++++++ components/SiteTree.tsx | 0 components/mdx/index.tsx | 5 +++++ 7 files changed, 50 insertions(+), 5 deletions(-) create mode 100644 app/about/resume/page.tsx create mode 100644 app/content.mdx create mode 100644 components/Navbar.tsx create mode 100644 components/SiteTree.tsx create mode 100644 components/mdx/index.tsx 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} +