update header

This commit is contained in:
2024-06-03 18:04:16 +02:00
parent c527eebd2b
commit 7da14f7642
2 changed files with 22 additions and 24 deletions

View File

@@ -20,11 +20,28 @@ export default function RootLayout({
return (
<html lang="en" className={GeistSans.className}>
<body>
<div className="flex justify-center gap-5 my-5 font-bold">
<TabItem targetPath="/" text="Home" />
<TabItem targetPath="/projects" text="Projects" />
<TabItem targetPath="/publications" text="Publications" />
<TabItem targetPath="/certificates" text="Certificates" />
<div className="flex justify-between my-5 font-bold mx-5">
<div>
<h1 className="text-2xl">
<a href="/">Stan Runge</a>
</h1>
</div>
<div className="flex justify-center gap-5">
<TabItem targetPath="/projects" text="Projects" />
<TabItem targetPath="/publications" text="Publications" />
<TabItem targetPath="/certificates" text="Certificates" />
</div>
<div className="flex justify-center gap-5">
<a href="https://github.com/stanrunge" className="text-blue-500">
GitHub
</a>
<a
href="https://linkedin.com/in/stanrunge"
className="text-blue-500"
>
LinkedIn
</a>
</div>
</div>
{children}