import { PRIVACY_POLICY } from "@/constants/guidelines"; import React from "react"; import ReactMarkdown from "react-markdown"; import { Metadata } from "next"; export const metadata: Metadata = { title: "Privacy Policy - SVRJS", }; const PrivacyPolicy = () => { return (

Privacy Policy

Some older versions of SVR.JS are vulnerable to cyberattacks. It's recommended to update your SVR.JS version to the newest one. If you find a security issue with SVR.JS, report it as soon as possible to vulnerability-reports[at]svrjs[dot]org. We'll mitigate that vulnerability if it is possible.

{PRIVACY_POLICY}
); }; export default PrivacyPolicy;