Initial commit: Tool Website with Password Generator, Image Converter and Bookmarks

This commit is contained in:
danielvici123
2025-05-16 00:40:51 +02:00
commit d478acc6e3
19 changed files with 4049 additions and 0 deletions

23
app/components/Navbar.tsx Normal file
View 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>
)
}