Skip to content

Commit

Permalink
chore(policy): Link Laudiolin ToS & account deletion page
Browse files Browse the repository at this point in the history
  • Loading branch information
KingRainbow44 committed Apr 7, 2024
1 parent 9612908 commit 4ebaf63
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ import LoginPage from "@pages/LoginPage";
import PastePage from "@pages/PastePage";
import UploadPage from "@pages/UploadPage";
import Donations from "@pages/Donations";
import DeleteAccount from "@pages/DeleteAccount";
import LaudiolinTerms from "@pages/LaudiolinTerms";
import LaudiolinPrivacy from "@pages/LaudiolinPrivacy";

import PasteDisplay from "@pages/PasteDisplay";

import "@css/App.css";
import "@css/Icons.scss";

import "highlight.js/styles/github-dark.css";
import "react-tooltip/dist/react-tooltip.css";

Expand All @@ -27,7 +30,10 @@ class App extends React.PureComponent {
<Route path={"/paste"} element={<PastePage />} />
<Route path={"/upload"} element={<UploadPage />} />
<Route path={"/donate"} element={<Donations />} />
<Route path={"/laudiolin-privacy"} element={<LaudiolinPrivacy />} />
<Route path={"/account/delete"} element={<DeleteAccount />} />

<Route path={"/terms/laudiolin"} element={<LaudiolinTerms />} />
<Route path={"/privacy/laudiolin"} element={<LaudiolinPrivacy />} />

<Route path={"/paste/:id"} element={<PasteDisplay />} />
<Route path={"/login/:srv"} element={<LoginPage />} />
Expand Down
9 changes: 9 additions & 0 deletions src/ui/pages/DeleteAccount.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function DeleteAccount() {
return (
<div className={"DeleteAccount"}>

</div>
);
}

export default DeleteAccount;

0 comments on commit 4ebaf63

Please sign in to comment.