Skip to content

Commit

Permalink
Add black bar for Bill Walton
Browse files Browse the repository at this point in the history
  • Loading branch information
switz committed May 27, 2024
1 parent 48e6f50 commit 04158b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Providers from './Providers';
dns.setDefaultResultOrder('ipv4first');

import '../styles/globals.css';
import Link from 'next/link';

// TODO: figure out if we don't need any weights
const roboto = Roboto({ subsets: ['latin'], weight: ['100', '300', '400', '500', '700', '900'] });
Expand All @@ -18,6 +19,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<link rel="icon" href="/favicon.ico" />
</head>
<body className={roboto.className}>
<Link href="https://en.wikipedia.org/wiki/Bill_Walton" target="_blank">
<div className="fixed top-0 z-10 h-2 w-full bg-black" />
</Link>
<Providers>{children}</Providers>
</body>
</html>
Expand Down

0 comments on commit 04158b2

Please sign in to comment.