From b5e0f464afff6f58b3ac40c9aa5859dfd326bab5 Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:06:40 +0100 Subject: TOS + Privacy --- apps/website/src/pages/about.astro | 2 +- apps/website/src/pages/privacy.astro | 22 ++++++++++++++++++++++ apps/website/src/pages/tos.astro | 22 ++++++++++++++++++++++ 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 apps/website/src/pages/privacy.astro create mode 100644 apps/website/src/pages/tos.astro (limited to 'apps/website/src/pages') diff --git a/apps/website/src/pages/about.astro b/apps/website/src/pages/about.astro index 11568d3..035d3ae 100644 --- a/apps/website/src/pages/about.astro +++ b/apps/website/src/pages/about.astro @@ -11,7 +11,7 @@ import Layout from '@layouts/Layout.astro';
Our journey
- From an aspring team just trying to make a cool thing, to what we now call Polyfrost, we've made a lot of progress. + From an aspiring team just trying to make a cool thing, to what we now call Polyfrost, we've made a lot of progress.
diff --git a/apps/website/src/pages/privacy.astro b/apps/website/src/pages/privacy.astro new file mode 100644 index 0000000..d3940f2 --- /dev/null +++ b/apps/website/src/pages/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(); +--- + + +
+
+
+ Privacy Policy +
+ {policy} +
+
+
diff --git a/apps/website/src/pages/tos.astro b/apps/website/src/pages/tos.astro new file mode 100644 index 0000000..6ed2009 --- /dev/null +++ b/apps/website/src/pages/tos.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(); +--- + + +
+
+
+ Terms of Service +
+ {tos} +
+
+
-- cgit