Feb 24, 2023
James Perkins
New docs, appearance and localization for Next.js App Router, Hydration improvements for remix, Spanish and German localization.
Happy Changelog Friday, the team has been working hard on improving Clerk and bringing new features and improving our SDKs.
This has been a passion project of mine, I have spent the last 3 weeks creating our new documentation which launched in to a beta today for Next.js only. The docs have some features that I think are important to Clerk and to you as a developer:
If you are ready to check them out head over to https://clerk.com/docs
When we introduced the beta support for Next.js App Router we decided to leave out the appearance prop and localization while we worked on core stability.
You can now use our appearance prop to style our components to your brand and localize based upon your user base. Here is an example of using our prebuilt dark theme
src/app/layout.tsx1import { ClerkProvider } from "@clerk/nextjs/app-beta";2import { dark } from "@clerk/themes";34export default function RootLayout({5children,6}: {7children: React.ReactNode;8}) {9return (10<html lang="en">11<ClerkProvider12appearance={{13baseTheme: dark,14}}15>16<body>{children}</body>17</ClerkProvider>18</html>19);20}21
We released @clerk/nextjs@4.11.0
which supports 13.2.0 changes that we introduced, if you upgrade to the latest Next.js make sure you update your Clerk package as well!
We added Dashboard search for your organizations allowing you to find and manage them quicker and easier.
We have spent time improving our @clerk/remix
package and making sure that hydration doesn't become an issue with React 18.2. Please make sure you are on the latest to see the improvement with hydration.
A huge shoutout to two of our community members for taking the time to localize our components to German and Spanish.
Thanks to Phillip
Start completely free for up to 10,000 monthly active users and up to 100 monthly active orgs. No credit card required.
Learn more about our transparent per-user costs to estimate how much your company could save by implementing Clerk.
The latest news and updates from Clerk, sent to your inbox.