Initial commit

This commit is contained in:
tuna2134
2025-04-28 02:01:44 +00:00
commit 65ba0bd083
18 changed files with 1174 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const Header: React.FC = () => {
return (
<header className="h-screen w-screen flex place-content-center">
<div className="place-content-center">
<h1 className="text-2xl font-bold">tuna2134</h1>
</div>
</header>
)
}
export default Header;