fixes for build issues
This commit is contained in:
1
.github/workflows/main.yml
vendored
1
.github/workflows/main.yml
vendored
@@ -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
|
||||||
|
|||||||
@@ -5,3 +5,5 @@ const WorkHistory = () => {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default WorkHistory;
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user