aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/pages/legal/privacy.astro
diff options
context:
space:
mode:
authorWyvest <wyvestbusiness@gmail.com>2024-01-20 11:29:57 -0500
committerGitHub <noreply@github.com>2024-01-20 11:29:57 -0500
commit0afab2cd1b1266034d35cd66f41c3bde90847f9e (patch)
tree54172a78823cf76761ab88e21d6d2c64d5b965c3 /apps/website/src/pages/legal/privacy.astro
parent55b593c4e6b90137995aee9a55ba2a86423cc7bd (diff)
parent55548a94b61ce7d1ca0ca8da69db7566f937cfeb (diff)
downloadNexus-0afab2cd1b1266034d35cd66f41c3bde90847f9e.tar.gz
Nexus-0afab2cd1b1266034d35cd66f41c3bde90847f9e.tar.bz2
Nexus-0afab2cd1b1266034d35cd66f41c3bde90847f9e.zip
Merge pull request #4 from Polyfrost/website/icon-fix
Diffstat (limited to 'apps/website/src/pages/legal/privacy.astro')
-rw-r--r--apps/website/src/pages/legal/privacy.astro22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/website/src/pages/legal/privacy.astro b/apps/website/src/pages/legal/privacy.astro
new file mode 100644
index 0000000..d3940f2
--- /dev/null
+++ b/apps/website/src/pages/legal/privacy.astro
@@ -0,0 +1,22 @@
+---
+import Header from '@components/base/Header.astro';
+import Paragraph from '@components/base/Paragraph.astro';
+import Section from '@components/base/Section.astro';
+import Layout from '@layouts/Layout.astro';
+
+const policy = `
+Currently, we do not offer any services that require a privacy policy!
+This will be updated in the future, if necessary.
+`.trim();
+---
+
+<Layout>
+ <Section hFull class="justify-center items-start pt-32">
+ <div class="flex flex-col justify-start items-start w-full text-navy-peony">
+ <Header>
+ Privacy Policy
+ </Header>
+ <Paragraph class="whitespace-pre-line">{policy}</Paragraph>
+ </div>
+ </Section>
+</Layout>