8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
export const Header = () => {
|
|
return (
|
|
<header className="py-5 px-4 bg-accent">
|
|
<h1 className="text-3xl font-semibold text-secondary">archive.local</h1>
|
|
</header>
|
|
);
|
|
};
|