fixes for build issues

This commit is contained in:
2023-08-02 17:51:53 -05:00
parent 21269f0e3f
commit 3d5079ec2e
3 changed files with 4 additions and 8 deletions

View File

@@ -4,7 +4,6 @@ on:
push: push:
branches: branches:
- master - master
- next-migration
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -5,3 +5,5 @@ const WorkHistory = () => {
</div> </div>
); );
} }
export default WorkHistory;

View File

@@ -16,11 +16,6 @@ export const inter = Inter({ subsets: ['latin'] })
export const besley = Besley({ subsets: ['latin'] }) export const besley = Besley({ subsets: ['latin'] })
export const cabin = Cabin({ subsets: ['latin'] }) export const cabin = Cabin({ subsets: ['latin'] })
export const metadata = {
title: 'Mikayla Dobson | Software Engineer',
description: 'Integrating artistry and technology to create beautiful software',
}
export default function RootLayout({ children }: { children: React.ReactNode }) { export default function RootLayout({ children }: { children: React.ReactNode }) {
const pathname = usePathname(); const pathname = usePathname();
const [bg, setBg] = useState('bg-slate-900'); const [bg, setBg] = useState('bg-slate-900');
@@ -56,8 +51,8 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return ( return (
<html lang="en"> <html lang="en">
<Head> <Head>
<title>{metadata.title}</title> <title>Mikayla Dobson | Software Engineer</title>
<meta name="description" content={metadata.description} /> <meta name="description" content="Mikayla Dobson is a software engineer based in Nashville, TN" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
</Head> </Head>