aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/pages/legal/terms.astro
blob: e894d76675a7348b951f7015b8b41a81de43d6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 title="Terms of Service">
	<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>