diff --git a/app/globals.css b/app/globals.css index 4ae7b89..54e66aa 100644 --- a/app/globals.css +++ b/app/globals.css @@ -49,3 +49,20 @@ html { @apply bg-background text-foreground; } } + +/* Retro styling for navbar */ +.retro-navbar { + background-color: #f4f4f4; + font-family: 'Courier New', Courier, monospace; + border: 2px solid #000; +} + +.retro-navbar a { + color: #000; + text-decoration: none; +} + +.retro-navbar a:hover { + color: #ff0000; + text-decoration: underline; +} diff --git a/components/header.tsx b/components/header.tsx index cec33ab..48e48bb 100644 --- a/components/header.tsx +++ b/components/header.tsx @@ -25,7 +25,7 @@ interface HeaderProps { export default function Header({ user, logoSuffix }: HeaderProps) { return ( -
+