From 6cd5d6051f8781ef4bb7dbff3db5fdd6612788d7 Mon Sep 17 00:00:00 2001 From: Aidan Honor Date: Thu, 13 Mar 2025 21:58:56 -0400 Subject: [PATCH] feat: add privacy policy, integrations around site for it (e.g. signup), added footer to public-facing ui --- app/account/login/page.tsx | 4 +- app/page.tsx | 2 + app/privacy/page.tsx | 114 ++++++++++++++++++++++++++++++ components/pages/main/Footer.tsx | 39 ++++++++++ components/pages/main/Pricing.tsx | 2 +- 5 files changed, 158 insertions(+), 3 deletions(-) create mode 100644 app/privacy/page.tsx create mode 100644 components/pages/main/Footer.tsx diff --git a/app/account/login/page.tsx b/app/account/login/page.tsx index db0237a..ee4b575 100644 --- a/app/account/login/page.tsx +++ b/app/account/login/page.tsx @@ -39,8 +39,8 @@ export default async function Login() { - -

If you still have a p0ntus mail account, select "Create an Account"

+ +

By continuing, you agree to our Privacy Policy.

diff --git a/app/page.tsx b/app/page.tsx index 8b53952..7d71df5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -3,6 +3,7 @@ import FeatureCard from "@/components/pages/main/FeatureCard" import { Mail, Lock, Disc3, Headset } from "lucide-react" import { SiGitea, SiAuthentik } from "react-icons/si"; import Navbar from "@/components/pages/main/Navbar" +import Footer from "@/components/pages/main/Footer" import PoweredBySection from "@/components/pages/main/PoweredBySection" import Pricing from "@/components/pages/main/Pricing" @@ -58,6 +59,7 @@ export default function Home() { +