diff --git a/examples/next/src/app/app-router-client-component-route-handler-swr/page.tsx b/examples/next/src/app/app-router-client-component-route-handler-swr/page.tsx index a1937a52..a3e86f41 100644 --- a/examples/next/src/app/app-router-client-component-route-handler-swr/page.tsx +++ b/examples/next/src/app/app-router-client-component-route-handler-swr/page.tsx @@ -7,7 +7,7 @@ import { Title } from "@/app/title"; import { GetTheCode } from "../get-the-code"; export const metadata: Metadata = { - title: "🛠iron-session examples: Client components, route handlers and swr", + title: "🛠iron-session examples: Client components, route handlers and SWR", }; export default function AppRouterRedirect() { @@ -22,7 +22,7 @@ export default function AppRouterRedirect() { href="https://swr.vercel.app" target="_blank" > - swr + SWR > } @@ -89,7 +89,7 @@ function HowItWorks() {
One benefit of using{" "} - swr + SWR : if you open the page in different tabs/windows, and logout from one place, every other tab/window will be synced and logged out. diff --git a/examples/next/src/app/page.tsx b/examples/next/src/app/page.tsx index a5633a3a..7d8e92da 100644 --- a/examples/next/src/app/page.tsx +++ b/examples/next/src/app/page.tsx @@ -15,7 +15,7 @@ export default function Home() { className={css.link.concat(" text-lg")} href="/app-router-client-component-route-handler-swr" > - App router + client components, route handlers, and swr + App router + client components, route handlers, and SWR {" "} 🤩