mirror of
https://github.com/hex248/tsos.git
synced 2026-02-07 18:23:05 +00:00
basic setup
react ts tailwind vite biome bun
This commit is contained in:
14
src/Index.tsx
Normal file
14
src/Index.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
function Index() {
|
||||
return (
|
||||
<div className="flex flex-col h-[100vh] items-center">
|
||||
<header className="w-full flex items-center justify-center border-b h-12">
|
||||
<h1 className="text-3xl font-bold">The Shape of Sound</h1>
|
||||
</header>
|
||||
<main className="w-full flex-1 p-4 flex items-center justify-center">
|
||||
<div className="w-64 h-64 bg-orange-600 rounded-full" />
|
||||
</main>{" "}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Index;
|
||||
Reference in New Issue
Block a user