import ReactMarkdown from "react-markdown"; import { TERMS_AND_CONDITIONS } from "@/constants/guidelines"; import { Metadata } from "next"; // baseURL [ENV] export const metadata: Metadata = { title: "Terms of Service - SVR.JS", description: "Understand your rights and responsibilities when using SVR.JS. Our Terms of Service page outlines the conditions for visiting our website, ensuring a transparent and fair experience for all users.", openGraph: { title: "Terms of Service - SVR.JS", description: "Understand your rights and responsibilities when using SVR.JS. Our Terms of Service page outlines the conditions for visiting our website, ensuring a transparent and fair experience for all users.", url: "https://svrjs.org/tos", type: "website", images: [ { url: "https://svrjs.vercel.app/metadata/svrjs-cover.png", width: 800, height: 600, alt: "Terms of Service - SVR.JS" } ] }, twitter: { card: "summary_large_image", site: "@SVR_JS", title: "Terms of Service - SVR.JS", description: "Understand your rights and responsibilities when using SVR.JS. Our Terms of Service page outlines the conditions for visiting our website, ensuring a transparent and fair experience for all users.", images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"], creator: "@SVR_JS" } }; const TermsOfService = () => { return (

Terms of Service

Effective date: April 24, 2024

{TERMS_AND_CONDITIONS}
); }; export default TermsOfService;