basic setup

react
ts
tailwind
vite
biome
bun
This commit is contained in:
Oliver Bryan
2026-01-07 12:22:30 +00:00
parent c0700e1373
commit 019b8545f1
13 changed files with 707 additions and 0 deletions

14
src/Index.tsx Normal file
View 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;