Added TOS + Privacy

This commit is contained in:
Fernando Videira
2024-06-19 19:59:42 +01:00
parent a21cca3df9
commit 0cd2bf4c38
12 changed files with 337 additions and 15 deletions
+4
View File
@@ -1,11 +1,15 @@
import { Route, Routes } from "react-router-dom";
import Home from "./routes/Home";
import TOS from "./routes/TOS";
import PP from "./routes/PP";
export default function App() {
return (
<div className="font-baijam min-h-screen text-white">
<Routes>
<Route path="*" element={<Home />} />
<Route path="tos" element={<TOS />} />
<Route path="privacy" element={<PP />} />
</Routes>
</div>
);