svrjs-nextjs-website/app/(root)/tos/page.tsx

56 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-07-01 09:56:01 +02:00
import ReactMarkdown from "react-markdown";
import { TERMS_AND_CONDITIONS } from "@/constants/guidelines";
2024-07-01 11:24:24 +02:00
import { Metadata } from "next";
2024-08-01 16:32:57 +02:00
// baseURL [ENV]
2024-07-01 11:24:24 +02:00
export const metadata: Metadata = {
2024-08-01 16:32:57 +02:00
title: "Terms of Service - SVRJS",
description:
2024-08-02 19:41:45 +02:00
"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.",
2024-08-01 16:32:57 +02:00
openGraph: {
2024-08-02 19:41:45 +02:00
title: "Terms of Service - SVRJS",
2024-08-01 16:32:57 +02:00
description:
2024-08-02 19:41:45 +02:00
"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",
2024-08-01 16:32:57 +02:00
type: "website",
images: [
{
url: "https://svrjs.vercel.app/metadata/svrjs-cover.png",
width: 800,
height: 600,
2024-08-02 19:41:45 +02:00
alt: "Terms of Service - SVRJS",
2024-08-01 16:32:57 +02:00
},
],
},
twitter: {
card: "summary_large_image",
site: "@SVR_JS",
2024-08-02 19:41:45 +02:00
title: "Terms of Service - SVRJS",
2024-08-01 16:32:57 +02:00
description:
2024-08-02 19:41:45 +02:00
"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.",
2024-08-01 16:32:57 +02:00
images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"],
creator: "@SVR_JS",
},
2024-07-01 11:24:24 +02:00
};
2024-06-15 19:24:54 +02:00
const TermsOfService = () => {
2024-06-30 20:42:13 +02:00
return (
<section
id="tos"
className="wrapper container py-24 md:py-28 gap-2 flex flex-col"
2024-06-30 20:42:13 +02:00
>
<h1 className="text-3xl md:text-5xl pb-1 md:pb-2 font-bold text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400">
2024-08-01 16:32:57 +02:00
Terms Of Service
</h1>
<p className="md:text-lg text-muted-foreground text-start mb-6">
Last updated: 24.04.2024
</p>
<div className="prose max-w-full md:prose-lg dark:prose-invert">
2024-07-01 09:56:01 +02:00
<ReactMarkdown>{TERMS_AND_CONDITIONS}</ReactMarkdown>
</div>
2024-06-30 20:42:13 +02:00
</section>
);
2024-06-15 19:24:54 +02:00
};
export default TermsOfService;