fix: add legal links to hosted sign-up footer (#77)

This commit is contained in:
Ben Senescu 2026-04-04 17:24:21 -04:00 committed by Ben Senescu
parent 749f5b6abb
commit 8a4e5f429d

View File

@ -105,6 +105,29 @@ function SignUpPage() {
title="Create your account"
footer={
isHostedMode ? (
<div className="space-y-4">
<p className="text-sm leading-relaxed text-base-content/60">
By signing up, you agree to our{" "}
<a
href="https://openseo.so/terms-and-conditions"
target="_blank"
rel="noreferrer"
className="text-base-content underline underline-offset-2 hover:text-base-content/80 transition-colors"
>
Terms
</a>{" "}
and{" "}
<a
href="https://openseo.so/privacy"
target="_blank"
rel="noreferrer"
className="text-base-content underline underline-offset-2 hover:text-base-content/80 transition-colors"
>
Privacy Policy
</a>
.
</p>
<p className="text-sm text-base-content/50">
Already have an account?{" "}
<Link
@ -115,6 +138,7 @@ function SignUpPage() {
Sign in
</Link>
</p>
</div>
) : null
}
>