vite setup

This commit is contained in:
2026-02-05 11:05:41 +00:00
commit a8988b8fd0
19 changed files with 1269 additions and 0 deletions

19
src/App.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { Button } from "@/components/ui/button";
function App() {
return (
<div
className={
"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>
</div>
);
}
export default App;