From 827c03896bac9f61ea496fd97a4df065b1b98bc5 Mon Sep 17 00:00:00 2001 From: justprotocol Date: Mon, 29 Jun 2026 14:30:17 +0100 Subject: [PATCH 01/14] feat: add privacy, terms pages and update social links --- frontend/app/privacy/page.tsx | 18 ++++++++++++++++++ frontend/app/terms/page.tsx | 18 ++++++++++++++++++ frontend/components/landing/footer.tsx | 10 +++++----- 3 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 frontend/app/privacy/page.tsx create mode 100644 frontend/app/terms/page.tsx diff --git a/frontend/app/privacy/page.tsx b/frontend/app/privacy/page.tsx new file mode 100644 index 0000000..92c8373 --- /dev/null +++ b/frontend/app/privacy/page.tsx @@ -0,0 +1,18 @@ +import Link from 'next/link'; + +export default function PrivacyPage() { + return ( +
+

Privacy Policy

+

+ We are currently drafting our official privacy policy. Please check back soon, or reach out to us if you have immediate questions. +

+ + Return Home + +
+ ); +} \ No newline at end of file diff --git a/frontend/app/terms/page.tsx b/frontend/app/terms/page.tsx new file mode 100644 index 0000000..6d95d65 --- /dev/null +++ b/frontend/app/terms/page.tsx @@ -0,0 +1,18 @@ +import Link from 'next/link'; + +export default function TermsPage() { + return ( +
+

Terms of Service

+

+ We are currently drafting our official terms of service. Please check back soon, or reach out to us if you have immediate questions. +

+ + Return Home + +
+ ); +} \ No newline at end of file diff --git a/frontend/components/landing/footer.tsx b/frontend/components/landing/footer.tsx index a41c9a4..af88a17 100644 --- a/frontend/components/landing/footer.tsx +++ b/frontend/components/landing/footer.tsx @@ -50,19 +50,19 @@ export function Footer() {

Community