aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/pages/legal/terms.astro
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/pages/legal/terms.astro')
-rw-r--r--apps/website/src/pages/legal/terms.astro22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/website/src/pages/legal/terms.astro b/apps/website/src/pages/legal/terms.astro
new file mode 100644
index 0000000..6ed2009
--- /dev/null
+++ b/apps/website/src/pages/legal/terms.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 tos = `
+Currently, we do not offer any services that require a terms of service!
+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>
+ Terms of Service
+ </Header>
+ <Paragraph class="whitespace-pre-line">{tos}</Paragraph>
+ </div>
+ </Section>
+</Layout>