Files
archive.local/web/src/components/Header.tsx
2025-12-18 00:14:02 +03:00

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>
);
};