@@ -169,7 +169,7 @@ import {AuthCodeGroup} from "/snippets/AuthCodeGroup.jsx";
169169 export default function LoginButton() {
170170 return (
171171 <a
172- href="/docs/ auth/login"
172+ href="/auth/login"
173173 className="button login"
174174 >
175175 Log In
@@ -184,7 +184,7 @@ import {AuthCodeGroup} from "/snippets/AuthCodeGroup.jsx";
184184 export default function LogoutButton() {
185185 return (
186186 <a
187- href="/docs/ auth/logout"
187+ href="/auth/logout"
188188 className="button logout"
189189 >
190190 Log Out
@@ -817,7 +817,7 @@ This quickstart demonstrates how to add Auth0 authentication to a Next.js applic
817817 export default function LoginButton() {
818818 return (
819819 < a
820- href = " /docs/ auth/login"
820+ href = " /auth/login"
821821 className = " button login"
822822 >
823823 Log In
@@ -833,7 +833,7 @@ This quickstart demonstrates how to add Auth0 authentication to a Next.js applic
833833 export default function LogoutButton() {
834834 return (
835835 < a
836- href = " /docs/ auth/logout"
836+ href = " /auth/logout"
837837 className = " button logout"
838838 >
839839 Log Out
@@ -1217,7 +1217,7 @@ This quickstart demonstrates how to add Auth0 authentication to a Next.js applic
12171217 - ** Simplified client setup** - ` new Auth0Client() ` reads environment variables automatically
12181218 - ** New route paths** - Routes are at ` /auth/* ` instead of ` /api/auth/* `
12191219 - ** Required middleware** - All authentication functionality goes through middleware
1220- - ** Use ` <a> ` tags** - Navigation must use ` <a href="/docs/ auth/login"> ` instead of buttons with onClick
1220+ - ** Use ` <a> ` tags** - Navigation must use ` <a href="/auth/login"> ` instead of buttons with onClick
12211221
12221222 ### Authentication Routes
12231223
0 commit comments