Skip to content

Commit

Permalink
content: Add Terms and Privacy links (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
evadecker authored Dec 13, 2024
1 parent 9a5e058 commit cf18a88
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/gorgeous-colts-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"namesake": minor
---

Add links to terms of service and privacy policy
16 changes: 16 additions & 0 deletions src/routes/_authenticated/settings/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,22 @@ function SettingsRoute() {
Discord Community
</NavItem>
</NavGroup>
<NavGroup label="Legal">
<NavItem
href="https://namesake.fyi/terms"
target="_blank"
rel="noreferrer"
>
Terms of Service
</NavItem>
<NavItem
href="https://namesake.fyi/privacy"
target="_blank"
rel="noreferrer"
>
Privacy Policy
</NavItem>
</NavGroup>
</Nav>
</AppSidebar>
<AppContent>
Expand Down
19 changes: 19 additions & 0 deletions src/routes/_unauthenticated/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,25 @@ const SignIn = () => {
<Button type="submit" isDisabled={isSubmitting} variant="primary">
{isSubmitting ? "Registering..." : "Register"}
</Button>
<p className="text-sm text-gray-dim text-center text-balance">
By registering, you agree to Namesake’s{" "}
<Link
href="https://namesake.fyi/terms"
target="_blank"
rel="noreferrer"
>
Terms of Service
</Link>{" "}
and{" "}
<Link
href="https://namesake.fyi/privacy"
target="_blank"
rel="noreferrer"
>
Privacy Policy
</Link>
.
</p>
</Form>
)}
</TabPanel>
Expand Down

0 comments on commit cf18a88

Please sign in to comment.