20 lines
620 B
TypeScript
20 lines
620 B
TypeScript
|
|
//====================================
|
||
|
|
// 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>
|
||
|
|
<div className="text-3xl">About</div>
|
||
|
|
<div className="text-3xl">Document</div>
|
||
|
|
<div className="text-3xl">Contact</div>
|
||
|
|
<div className="text-3xl">Sources</div>
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|