blob: b78b631953e4926efe4d214384ced30ef293081a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import Layout from "../layouts/Layout.astro";
const title = "Privacy Policy | CIDR.xyz";
const description = "Privacy policy for CIDR.xyz";
import { Content as PrivacyPolicyContent } from "../content/privacy-policy.md";
---
<Layout title={title} description={description}>
<article class="prose prose-lg mx-auto">
<PrivacyPolicyContent />
</article>
</Layout>
|