import { PRIVACY_POLICY } from "@/constants/guidelines"; import React from "react"; import ReactMarkdown from "react-markdown"; import { Metadata } from "next"; // baseURL [ENV] export const metadata: Metadata = { title: "Privacy Policy - SVR.JS", description: "Learn how we collect, use, and protect your data. Our Privacy Policy outlines our commitment to your privacy and the measures we take to safeguard your information when visiting our website.", openGraph: { title: "Privacy Policy - SVR.JS", description: "Learn how we collect, use, and protect your data. Our Privacy Policy outlines our commitment to your privacy and the measures we take to safeguard your information when visiting our website.", url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/privacy`, type: "website", images: [ { url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`, width: 800, height: 600, alt: "Privacy Policy - SVR.JS" } ] }, twitter: { card: "summary_large_image", site: "@SVR_JS", title: "Privacy Policy - SVR.JS", description: "Learn how we collect, use, and protect your data. Our Privacy Policy outlines our commitment to your privacy and the measures we take to safeguard your information when visiting our website.", images: [`${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`], creator: "@SVR_JS" } }; const PrivacyPolicy = () => { return (

Privacy Policy

Effective date: September 7, 2024

{PRIVACY_POLICY}
); }; export default PrivacyPolicy;