Navbar added + backgroung gradient

This commit is contained in:
2024-04-11 00:25:18 +01:00
parent 387522e5a7
commit df3fd2fb4d
24 changed files with 1607 additions and 176 deletions
+8 -3
View File
@@ -1,7 +1,12 @@
import { Route, Routes } from "react-router-dom";
import Home from "./routes/Home";
export default function App() {
return (
<>
<h1>Hello, World!</h1>
</>
<div className="font-baijam bg-gradient-to-br from-custom-bglight to-custom-bgdark min-h-screen text-white">
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</div>
);
}