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";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Terms Of Service - SVRJS",
|
|
|
|
};
|
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-4 flex flex-col"
|
|
|
|
>
|
2024-07-01 11:14:27 +02:00
|
|
|
<div className="prose max-w-full 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;
|