22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
import ReactMarkdown from "react-markdown";
|
|
import { TERMS_AND_CONDITIONS } from "@/constants/guidelines";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Terms Of Service - SVRJS",
|
|
};
|
|
|
|
const TermsOfService = () => {
|
|
return (
|
|
<section
|
|
id="tos"
|
|
className="wrapper container py-24 md:py-28 gap-4 flex flex-col"
|
|
>
|
|
<div className="prose max-w-full prose-lg dark:prose-invert">
|
|
<ReactMarkdown>{TERMS_AND_CONDITIONS}</ReactMarkdown>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default TermsOfService;
|