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

29 lines
834 B
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";
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"
>
<h1 className="text-3xl md:text-5xl font-bold text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400">
Terms and Conditions
</h1>
<p className="text-lg text-muted-foreground text-start mb-4">
Last updated: 24.04.2024
</p>
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;