update terms & privacy policy links on sign-in page
This commit is contained in:
parent
d555380ab5
commit
b8d2fb4602
1 changed files with 3 additions and 2 deletions
|
|
@ -7,6 +7,7 @@ import Head from "next/head";
|
||||||
import { getProviders, signIn } from "next-auth/react";
|
import { getProviders, signIn } from "next-auth/react";
|
||||||
import { getServerSession } from "next-auth";
|
import { getServerSession } from "next-auth";
|
||||||
import { authOptions } from "~/server/auth";
|
import { authOptions } from "~/server/auth";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
const SignIn = ({
|
const SignIn = ({
|
||||||
providers,
|
providers,
|
||||||
|
|
@ -44,8 +45,8 @@ const SignIn = ({
|
||||||
</div>
|
</div>
|
||||||
<p className="prose prose-sm mx-auto mt-6 max-w-[18rem] text-xs text-gray-500">
|
<p className="prose prose-sm mx-auto mt-6 max-w-[18rem] text-xs text-gray-500">
|
||||||
By signing in, you agree to our{" "}
|
By signing in, you agree to our{" "}
|
||||||
<a href="/info/terms-of-service">Terms of Service</a> and{" "}
|
<Link href="/legal/terms">Terms of Service</Link> and{" "}
|
||||||
<a href="/info/privacy-policy">Privacy Policy</a>.
|
<Link href="/legal/privacy-policy">Privacy Policy</Link>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue