2026-05-25 09:48:11 +02:00
|
|
|
//====================================
|
|
|
|
|
// File: Navbar.tsx
|
|
|
|
|
// componente Navbar
|
|
|
|
|
// @author: "villari.andrea@libero.it"
|
|
|
|
|
// @version: "1.0.0 2026-05-07"
|
|
|
|
|
//====================================
|
|
|
|
|
|
|
|
|
|
export default function Navbar() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<div className="flex direction-row gap-7" >
|
|
|
|
|
<div className="text-3xl">Home</div>
|
2026-05-25 12:34:52 +02:00
|
|
|
<div className="text-3xl">About</div>
|
2026-05-25 09:48:11 +02:00
|
|
|
<div className="text-3xl">Document</div>
|
|
|
|
|
<div className="text-3xl">Contact</div>
|
|
|
|
|
<div className="text-3xl">Sources</div>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|