mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 19:41:26 +00:00
23 lines
669 B
TypeScript
23 lines
669 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
import Link from 'next/link'
|
|
|
|
export default function Navbar() {
|
|
return (
|
|
<nav className="bg-blue-900 p-4 shadow-lg">
|
|
<div className="container mx-auto">
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex-1" /> {/* Spacer */}
|
|
<Link href="/" className="text-white font-bold text-xl hover:text-blue-100">
|
|
HOME
|
|
</Link>
|
|
<div className="flex-1 flex justify-end">
|
|
<Link href="/about" className="text-white hover:text-blue-100">
|
|
About
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
)
|
|
}
|