new fonts and full colour theme

This commit is contained in:
2026-02-05 12:22:17 +00:00
parent c47d8ac516
commit 8f3633d11b
2 changed files with 84 additions and 78 deletions

View File

@@ -1,4 +1,4 @@
import { Button } from "@/components/ui/button";
import { ThemeToggle } from "@/components/theme-toggle";
function App() {
return (
@@ -7,13 +7,10 @@ function App() {
"min-h-screen flex flex-col items-center justify-center gap-4 text-2xl"
}
>
<h1 className={"font-avara text-4xl"}>Oliver Bryan</h1>
<Button variant={"outline"} size={"sm"} className="">
test
</Button>
<h1 className={"picnic text-8xl"}>Oliver Bryan</h1>
<ThemeToggle />
</div>
);
}
export default App;