diff --git a/frontend/app/privacy/page.tsx b/frontend/app/privacy/page.tsx new file mode 100644 index 0000000..f312be3 --- /dev/null +++ b/frontend/app/privacy/page.tsx @@ -0,0 +1,19 @@ +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 + +
+ ); +} diff --git a/frontend/app/terms/page.tsx b/frontend/app/terms/page.tsx new file mode 100644 index 0000000..6a6f5e6 --- /dev/null +++ b/frontend/app/terms/page.tsx @@ -0,0 +1,21 @@ +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 + +
+ ); +} diff --git a/frontend/components/landing/footer.tsx b/frontend/components/landing/footer.tsx index ca3b420..3726fe4 100644 --- a/frontend/components/landing/footer.tsx +++ b/frontend/components/landing/footer.tsx @@ -61,7 +61,9 @@ export function Footer() {