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

18 lines
429 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-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 10:35:18 +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;