diff options
author | Pauline <git@ethanlibs.co> | 2024-01-10 19:58:58 -0500 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-01-10 19:58:58 -0500 |
commit | 8be3434d32d7ed9046000377f7f9e59ef2a971b3 (patch) | |
tree | a17c19137054e4768e57799cd3932dd92e66a69b /apps/website/src/pages/legal | |
parent | 75676183d008a07070db8fdd52af3fdf0bbfb8a7 (diff) | |
download | Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.tar.gz Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.tar.bz2 Nexus-8be3434d32d7ed9046000377f7f9e59ef2a971b3.zip |
super unfinished stuff but i was getting yelled at by wybest
Diffstat (limited to 'apps/website/src/pages/legal')
-rw-r--r-- | apps/website/src/pages/legal/ip.astro | 22 | ||||
-rw-r--r-- | apps/website/src/pages/legal/privacy.astro | 22 | ||||
-rw-r--r-- | apps/website/src/pages/legal/security.astro | 22 | ||||
-rw-r--r-- | apps/website/src/pages/legal/terms.astro | 22 |
4 files changed, 88 insertions, 0 deletions
diff --git a/apps/website/src/pages/legal/ip.astro b/apps/website/src/pages/legal/ip.astro new file mode 100644 index 0000000..13cfda5 --- /dev/null +++ b/apps/website/src/pages/legal/ip.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 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> 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> diff --git a/apps/website/src/pages/legal/security.astro b/apps/website/src/pages/legal/security.astro new file mode 100644 index 0000000..a80d3f9 --- /dev/null +++ b/apps/website/src/pages/legal/security.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 security notice! +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> + Security Notice + </Header> + <Paragraph class="whitespace-pre-line">{tos}</Paragraph> + </div> + </Section> +</Layout> 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> |