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"
|
2024-07-29 22:57:35 +02:00
|
|
|
className="wrapper container py-24 md:py-28 gap-2 flex flex-col"
|
2024-06-30 20:42:13 +02:00
|
|
|
>
|
2024-07-29 22:57:35 +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-07-08 07:52:48 +02:00
|
|
|
Terms and Conditions
|
|
|
|
</h1>
|
2024-07-29 23:03:55 +02:00
|
|
|
<p className="md:text-lg text-muted-foreground text-start mb-6">
|
2024-07-08 07:52:48 +02:00
|
|
|
Last updated: 24.04.2024
|
|
|
|
</p>
|
2024-07-29 22:29:19 +02:00
|
|
|
<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;
|