Added TOS + Privacy
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user