aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/pages/legal/ip.astro
blob: 13cfda59f8f6c4e7806f0b36c88056ab65206de3 (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 policy = `
Currently, we do not offer any services that require a intellectual property 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>
				Intellectual Property Policy
			</Header>
			<Paragraph class="whitespace-pre-line">{policy}</Paragraph>
		</div>
	</Section>
</Layout>