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/config.ts | 2 +- apps/website/src/layouts/Layout.astro | 5 ++--- apps/website/src/pages/about.astro | 2 +- apps/website/src/pages/privacy.astro | 22 ++++++++++++++++++++++ apps/website/src/pages/tos.astro | 22 ++++++++++++++++++++++ 5 files changed, 48 insertions(+), 5 deletions(-) create mode 100644 apps/website/src/pages/privacy.astro create mode 100644 apps/website/src/pages/tos.astro diff --git a/apps/website/config.ts b/apps/website/config.ts index b0d7211..07cbf0f 100644 --- a/apps/website/config.ts +++ b/apps/website/config.ts @@ -84,7 +84,7 @@ export const configConst = { links: [ { text: 'Terms of service', - url: '/terms', + url: '/tos', }, { text: 'Privacy policy', diff --git a/apps/website/src/layouts/Layout.astro b/apps/website/src/layouts/Layout.astro index 6f34d9c..a14bc65 100644 --- a/apps/website/src/layouts/Layout.astro +++ b/apps/website/src/layouts/Layout.astro @@ -38,11 +38,10 @@ const { -
- + +
-
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