chore: add clerk migration video guide

This commit is contained in:
KinfeMichael Tariku
2025-05-27 01:33:23 -07:00
committed by GitHub
parent 640bf478a4
commit 25b7f4f2d6
3 changed files with 16 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ export function ResourceCard({
<ArrowUpRight className="absolute top-3 right-3 h-4 w-4 group-hover:opacity-100 opacity-80 text-muted-foreground transition-colors group-hover:text-foreground no-underline underline-offset-0" /> <ArrowUpRight className="absolute top-3 right-3 h-4 w-4 group-hover:opacity-100 opacity-80 text-muted-foreground transition-colors group-hover:text-foreground no-underline underline-offset-0" />
<div className="p-4 py-0 flex items-start justify-between"> <div className="p-4 py-0 flex items-start justify-between">
<a href={href} target="_blank" rel="noopener noreferrer"> <a href={href} target="_blank" rel="noopener noreferrer">
<h3 className="font-semibold tracking-tight no-underline"> <h3 className="font-semibold text-md tracking-tight no-underline">
{title} {title}
</h3> </h3>
</a> </a>

View File

@@ -381,7 +381,7 @@ migrateFromClerk()
process.exit(1); process.exit(1);
}); });
``` ```
Make sure to replace the `process.env.CLERK_SECRET_KEY` with your own Clerk secret key. And replace the `import { auth } from "./auth";` with your own auth instance. Feel free to customize the script to your needs. Make sure to replace the `process.env.CLERK_SECRET_KEY` with your own Clerk secret key. Feel free to customize the script to your needs.
</Step> </Step>
<Step> <Step>

View File

@@ -32,13 +32,7 @@ A curated collection of resources to help you learn and master Better Auth. From
href: "https://www.youtube.com/watch?v=Hjs3zM7o7NE", href: "https://www.youtube.com/watch?v=Hjs3zM7o7NE",
tags: ["review", "showcase"], tags: ["review", "showcase"],
}, },
{
title: "Nextjs 15 Authentication Made EASY with Better Auth",
description:
"A practical guide showing how to seamlessly integrate Better Auth with Next.js 15 for robust authentication.",
href: "https://www.youtube.com/watch?v=lxslnp-ZEMw",
tags: ["nextjs", "implementation", "tutorial"],
},
{ {
title: "Best authentication framework for next.js", title: "Best authentication framework for next.js",
description: description:
@@ -59,12 +53,25 @@ A curated collection of resources to help you learn and master Better Auth. From
href: "https://www.youtube.com/watch?v=g-RIrzBEX6M", href: "https://www.youtube.com/watch?v=g-RIrzBEX6M",
tags: [ "implementation"], tags: [ "implementation"],
}, },
{
title: "Nextjs 15 Authentication Made EASY with Better Auth",
description:
"A practical guide showing how to seamlessly integrate Better Auth with Next.js 15 for robust authentication.",
href: "https://www.youtube.com/watch?v=lxslnp-ZEMw",
tags: ["nextjs", "implementation", "tutorial"],
},
{ {
title: "Better Auth: Headless Authentication for Your TanStack Start App", title: "Better Auth: Headless Authentication for Your TanStack Start App",
description: "<strong>Jack</strong> demonstrates how to implement headless authentication in your TanStack Start application using Better Auth, providing a modern approach to auth.", description: "<strong>Jack</strong> demonstrates how to implement headless authentication in your TanStack Start application using Better Auth, providing a modern approach to auth.",
href: "https://www.youtube.com/watch?v=Atev8Nxpw7c", href: "https://www.youtube.com/watch?v=Atev8Nxpw7c",
tags: ["tanstack" , "implementation"], tags: ["tanstack" , "implementation"],
}, },
{
title: "Goodbye Clerk, Hello Better Auth Full Migration Guide!",
description: "A comprehensive guide showing how to migrate your authentication from Clerk to Better Auth, with step-by-step instructions and best practices.",
href: "https://www.youtube.com/watch?v=Za_QihbDSuk",
tags: ["migration", "clerk", "tutorial"],
},
] ]
} /> } />