layout and settings page

This commit is contained in:
Oliver Bryan
2026-01-07 15:18:45 +00:00
parent e6bc4cc65a
commit 57978f511a
5 changed files with 54 additions and 15 deletions

View File

@@ -1,17 +1,5 @@
import ThemeToggle from "./components/theme-toggle";
function Index() {
return (
<div className="flex flex-col h-[100vh] items-center">
<header className="w-full flex items-center justify-between border-b h-12 p-2">
<h1 className="text-3xl font-bold">The Shape of Sound</h1>
<ThemeToggle />
</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>
);
return <div className="w-64 h-64 bg-orange-600 rounded-full" />;
}
export default Index;