Skip to content

Commit

Permalink
chore: Add privacy policy/TOS (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnys1 authored Jun 18, 2024
1 parent d942566 commit 915a87c
Show file tree
Hide file tree
Showing 5 changed files with 1,039 additions and 1 deletion.
13 changes: 13 additions & 0 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Link from "next/link";

export default function Footer() {
return (
<>
<div>© {new Date().getFullYear()} Teo, Inc. (Celest)</div>
<div className="grow" />
<Link href="/privacy">Privacy Policy</Link>
<span className="mx-2">&bull;</span>
<Link href="/tos">Terms of Service</Link>
</>
);
}
16 changes: 16 additions & 0 deletions pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@
"type": "page",
"display": "hidden"
},
"privacy": {
"title": "Privacy Policy",
"type": "page",
"display": "hidden",
"theme": {
"typesetting": "article"
}
},
"tos": {
"title": "Terms of Service",
"type": "page",
"display": "hidden",
"theme": {
"typesetting": "article"
}
},
"404": {
"title": "404",
"type": "page",
Expand Down
Loading

0 comments on commit 915a87c

Please sign in to comment.