diff --git a/app/about/page.tsx b/app/about/page.tsx index 5724fec..0192ccd 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -5,6 +5,7 @@ import { Experience, Projects, Skills } from "../../components/Resume"; import { RxChevronDown } from "react-icons/rx"; import { useState } from "react"; import { FaGithub, FaLinkedin } from "react-icons/fa"; +import Card from "@/components/ui/Card"; export default function Resume() { const [skillsVisible, setSkillsVisible] = useState(true); @@ -13,27 +14,27 @@ export default function Resume() { const [projectsVisible, setProjectsVisible] = useState(true); return ( -
+
-

Mikayla Dobson

-

Software Engineer | Nashville, TN

+

Mikayla Dobson

+

Software Engineer | Nashville, TN

-
+

Download a copy for later?

- .pdf - .docx + .pdf + .docx
- innocuous-symmetry - mikayla-dobson + innocuous-symmetry + mikayla-dobson
- @@ -41,7 +42,7 @@ export default function Resume() {
- @@ -49,26 +50,26 @@ export default function Resume() {
- { educationVisible ? ( -
+

Southern Methodist University

Dallas, TX - B.A. Music

-

Concentrations in Piano Performance and Music Composition. Special focus on orchestral composition and arranging. Minor in French Language and Culture.

-
+

Concentrations in Piano Performance and Music Composition. Special focus on orchestral composition and arranging. Minor in French Language and Culture.

+ ) : null }
- diff --git a/app/content.mdx b/app/content.mdx deleted file mode 100644 index e82c304..0000000 --- a/app/content.mdx +++ /dev/null @@ -1,23 +0,0 @@ -# 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/globals.css b/app/globals.css index fd81e88..b5c61c9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,27 +1,3 @@ @tailwind base; @tailwind components; @tailwind utilities; - -:root { - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; -} - -@media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - } -} - -body { - color: rgb(var(--foreground-rgb)); - background: linear-gradient( - to bottom, - transparent, - rgb(var(--background-end-rgb)) - ) - rgb(var(--background-start-rgb)); -} diff --git a/app/layout.tsx b/app/layout.tsx index 51f896a..59e4336 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -18,7 +18,7 @@ export const cabin = Cabin({ subsets: ['latin'] }) export default function RootLayout({ children }: { children: React.ReactNode }) { const pathname = usePathname(); - const [bg, setBg] = useState('bg-slate-900'); + const [bg, setBg] = useState('bg-slate-400 dark:bg-slate-900'); const [overlay, setOverlay] = useState(false); const [pageIsScrolled, setPageIsScrolled] = useState(false); @@ -29,10 +29,13 @@ export default function RootLayout({ children }: { children: React.ReactNode }) setBg('bg-darkPlum'); setOverlay(true); break; - case '/': case '/about': + setBg("bg-blue-100 dark:bg-slate-900"); + setOverlay(false); + break; + case '/': default: - setBg('bg-slate-900'); + setBg('bg-slate-400 dark:bg-slate-900'); setOverlay(false); break; } @@ -62,7 +65,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
-
diff --git a/app/page.tsx b/app/page.tsx index 0f390c6..5409352 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -5,7 +5,7 @@ import Link from "next/link"; export default function Home() { return (
-
+
{/*
@@ -18,17 +18,17 @@ export default function Home() { image of Mikayla Dobson -

Hi! My name is Mikayla.

-

I build full-stack software solutions for the web, answer open-ended questions, and pet cats.

+

Hi! My name is Mikayla.

+

I build full-stack software solutions for the web, answer open-ended questions, and pet cats.

- + Tell me what I can do for you - + And check out some of my work while you're at it - + Check out my work
diff --git a/components/Home/index.tsx b/components/Home/index.tsx index 82d2edc..eda5a5b 100644 --- a/components/Home/index.tsx +++ b/components/Home/index.tsx @@ -13,7 +13,7 @@ export const ColorChangeName = () => {

Software Engineer

-

Pragmatic software design with style and artistry.

+

Pragmatic software design with style and artistry.

) diff --git a/components/Links/FeaturedLink.tsx b/components/Links/FeaturedLink.tsx index 645c233..fe86829 100644 --- a/components/Links/FeaturedLink.tsx +++ b/components/Links/FeaturedLink.tsx @@ -7,7 +7,7 @@ export default function FeaturedLink({ href, label, logo, disabled = false}: Lin
{logo} - {label} + {label}
diff --git a/components/Navbar/index.tsx b/components/Navbar/index.tsx index 581de0f..4287d17 100644 --- a/components/Navbar/index.tsx +++ b/components/Navbar/index.tsx @@ -12,7 +12,7 @@ export default function Navbar({ pageIsScrolled = false }) { return ( <> -