diff --git a/packages/mrwhale-dashboard/src/App.tsx b/packages/mrwhale-dashboard/src/App.tsx
index d064e9f..a9a2373 100644
--- a/packages/mrwhale-dashboard/src/App.tsx
+++ b/packages/mrwhale-dashboard/src/App.tsx
@@ -14,6 +14,7 @@ import ManageGuild from "./features/dashboard/manage/ManageGuild";
import { selectIsInitialLoad } from "./features/auth/authSlice";
import Loading from "./components/Loading";
import { useGetClientInfoMutation } from "./features/client/clientApi";
+import PrivacyPolicy from "./features/legal/PrivacyPolicy";
function App() {
const dispatch = useDispatch();
@@ -51,6 +52,7 @@ function App() {
element={}
/>
+ } />
diff --git a/packages/mrwhale-dashboard/src/features/legal/PrivacyPolicy.tsx b/packages/mrwhale-dashboard/src/features/legal/PrivacyPolicy.tsx
new file mode 100644
index 0000000..cfa7bce
--- /dev/null
+++ b/packages/mrwhale-dashboard/src/features/legal/PrivacyPolicy.tsx
@@ -0,0 +1,231 @@
+import {
+ Divider,
+ Link,
+ List,
+ ListItem,
+ ListItemText,
+ Typography,
+} from "@mui/material";
+
+const PrivacyPolicy = () => {
+ return (
+ <>
+
+ Privacy Policy
+
+
+ Last updated: September 25, 2023
+
+
+
+ This page describes Our policies on the collection, use and disclosure
+ of Your information when using the Service.
+
+
+ We use Your data to provide and improve the Service. By using the
+ Service, You agree to the collection and use of information in
+ accordance with this Privacy Policy.
+
+
+ Definitions
+
+
+
+
+
+
+
+ Refers to our Website, accessible at:{" "}
+
+ https://www.mrwhale.io
+
+
+
+
+
+
+
+ Refers to the Website and the Discord Application 'Mr. Whale'.
+
+
+
+
+
+
+ Refers to the 'Mr. Whale' Discord Bot Application or 'Mr.
+ Whale#0095'.
+
+
+
+
+
+
+ Cookies are small files that are placed on Your computer, mobile
+ device or any other device by a website.
+
+
+
+
+
+
+ Creator referred to as 'We', 'Us', 'Our'.
+
+
+
+
+
+
+ Refers to the individual accessing or using the Service, or the
+ company, or other legal entity on behalf of which such individual
+ is accessing or using the Service.
+
+
+
+
+
+ Data Collection and Use
+
+
+ The Website stores all data authorized by the user through Discord's
+ OAuth2 consent page. This data includes but not limited to your Discord
+ Id, Username, Avatar and Banner. This data is stored in our databases
+ and is NOT sold to any other parties. Users will be notified if any
+ additional information is stored.
+
+
+ The Bot upon being added to any Discord Server/Guild may store your
+ Guild and User Id. This data is used to track your Rank and Level across
+ Discord Servers/Guilds.
+
+
+ Cookies
+
+
+ The Website uses cookies to store information about users. These cookies
+ store the session identifier for logged in users and are used for user
+ authentication on the Website. Without these Cookies, the services that
+ You have asked for cannot be provided, and We only use these Cookies to
+ provide You with those services.
+
+
+ Links to other websites
+
+
+ This website may contain links to other websites not operated by Us. If
+ you click on any of these links, you will be directed to that website.
+ We strongly advise you check the privacy policies of these 3rd party
+ websites or services. We have no control or responsibility for the
+ content, privacy policies or practices of any 3rd party website or
+ services.
+
+
+
+ Children's Privacy
+
+
+ Our Service does not address anyone under the age of 13. We do not
+ knowingly collect personally identifiable information from anyone under
+ the age of 13. If You are a parent or guardian and You are aware that
+ Your child has provided Us with Personal Data, please contact Us. If We
+ become aware that We have collected Personal Data from anyone under the
+ age of 13 without verification of parental consent, We take steps to
+ remove that information from Our servers.
+
+
+
+ Changes to this Privacy Policy
+
+
+ We may amend this Privacy Policy from time to time. We will notify You
+ of any changes by posting the new Privacy Policy on this page. You are
+ advised to review this Privacy Policy periodically for any changes.
+ Changes to this Privacy Policy are effective when they are posted on
+ this page.
+
+
+ Contact
+
+
+ If you have any questions about this Privacy Policy, You can contact us
+ at{" "}
+
+ contact@mrwhale.io
+
+
+ >
+ );
+};
+
+export default PrivacyPolicy;
diff --git a/packages/mrwhale-dashboard/src/layouts/MainLayout.tsx b/packages/mrwhale-dashboard/src/layouts/MainLayout.tsx
index df5476f..50973d1 100644
--- a/packages/mrwhale-dashboard/src/layouts/MainLayout.tsx
+++ b/packages/mrwhale-dashboard/src/layouts/MainLayout.tsx
@@ -30,6 +30,7 @@ const footers = [
description: [
{ title: "Commands", href: "/commands" },
{ title: "Dashboard", href: "/dashboard" },
+ { title: "Privacy Policy", href: "/privacy" },
],
},
{