set-up / Header.tsx
zulkifal-turing's picture
Update Header.tsx
afa3e8a verified
raw
history blame contribute delete
576 Bytes
import React from "react";
const Header: React.FC = () => {
return (
<header className="bg-blue-600 text-white p-4 shadow-md">
<div className="container mx-auto flex justify-between items-center">
<h1 className="text-2xl font-bold">My Website</h1>
<nav className="space-x-4">
<a href="#home" className="hover:underline">Home</a>
<a href="#about" className="hover:underline">About</a>
<a href="#contact" className="hover:underline">Contact</a>
</nav>
</div>
</header>
);
};
export default Header;