+
+ Privacy Policy
+
+
+ Effective date: November 7, 2024
+
+
+ {privacyPolicy}
+
+
+ );
+}
+
+export default Contribute;
diff --git a/app/(root)/tos/page.jsx b/app/(root)/tos/page.jsx
new file mode 100644
index 0000000..8b365b2
--- /dev/null
+++ b/app/(root)/tos/page.jsx
@@ -0,0 +1,52 @@
+import ReactMarkdown from "react-markdown";
+import { termsOfService } from "@/constants/guidelines";
+
+export const metadata = {
+ title: "Terms of Service - MERNMail",
+ description:
+ "Understand your rights and responsibilities when using MERNMail. Our Terms of Service page outlines the conditions for visiting our website, ensuring a fair experience for all users.",
+ openGraph: {
+ title: "Terms of Service - MERNMail",
+ description:
+ "Understand your rights and responsibilities when using MERNMail. Our Terms of Service page outlines the conditions for visiting our website, ensuring a fair experience for all users.",
+ url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/tos`,
+ type: "website",
+ images: [
+ {
+ url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png`,
+ width: 2560,
+ height: 1440,
+ alt: "Terms of Service - MERNMail"
+ }
+ ]
+ },
+ twitter: {
+ card: "summary_large_image",
+ site: "@MERNMail",
+ title: "Terms of Service - MERNMail",
+ description:
+ "Understand your rights and responsibilities when using MERNMail. Our Terms of Service page outlines the conditions for visiting our website, ensuring a fair experience for all users.",
+ images: [
+ `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/mernmail-cover.png`
+ ],
+ creator: "@MERNMail"
+ }
+};
+
+function Contribute() {
+ return (
+