mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 21:51:26 +00:00
Initial commit: Tool Website with Password Generator, Image Converter and Bookmarks
This commit is contained in:
23
app/components/Navbar.tsx
Normal file
23
app/components/Navbar.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
'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">
|
||||
START
|
||||
</Link>
|
||||
<div className="flex-1 flex justify-end">
|
||||
<Link href="/about" className="text-white hover:text-blue-100">
|
||||
About
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user