Skip to content

Commit

Permalink
fix: links (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
grutt authored Dec 16, 2024
1 parent bd8efec commit c217448
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
15 changes: 11 additions & 4 deletions frontend/app/src/pages/auth/login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,21 @@ export default function Login() {
<p className="text-left text-sm text-gray-700 dark:text-gray-300 w-full">
By clicking continue, you agree to our{' '}
<Link
to="/terms"
to="https://www.iubenda.com/terms-and-conditions/76608149"
className="underline underline-offset-4 hover:text-primary"
>
Terms of Service
</Link>{' '}
and{' '}
</Link>
,{' '}
<Link
to="https://www.iubenda.com/privacy-policy/76608149/cookie-policy"
className="underline underline-offset-4 hover:text-primary"
>
Cookie Policy
</Link>
, and{' '}
<Link
to="/privacy"
to="https://www.iubenda.com/privacy-policy/76608149"
className="underline underline-offset-4 hover:text-primary"
>
Privacy Policy
Expand Down
15 changes: 11 additions & 4 deletions frontend/app/src/pages/auth/register/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,21 @@ export default function Register() {
<p className="text-left text-sm text-gray-700 dark:text-gray-300 w-full">
By clicking continue, you agree to our{' '}
<Link
to="/terms"
to="https://www.iubenda.com/terms-and-conditions/76608149"
className="underline underline-offset-4 hover:text-primary"
>
Terms of Service
</Link>{' '}
and{' '}
</Link>
,{' '}
<Link
to="https://www.iubenda.com/privacy-policy/76608149/cookie-policy"
className="underline underline-offset-4 hover:text-primary"
>
Cookie Policy
</Link>
, and{' '}
<Link
to="/privacy"
to="https://www.iubenda.com/privacy-policy/76608149"
className="underline underline-offset-4 hover:text-primary"
>
Privacy Policy
Expand Down

0 comments on commit c217448

Please sign in to comment.