Files
cecilia/src/components/Header.tsx
tuna2134 efaa624b51 fixed
2026-05-27 08:07:11 +09:00

13 lines
388 B
TypeScript

const Header: React.FC = () => {
return (
<header className="w-full flex flex-col items-center gap-1 py-4 border-b border-gray-400">
<h1 className="text-4xl font-bold">tuna2134</h1>
<small className="text-sm text-gray-600/80">
tuna2134の個人的な憩いの場
</small>
</header>
);
};
export default Header;