import Link from "next/link"; import { useId } from "react"; import { changelog } from "@/app/source"; import { notFound } from "next/navigation"; import { cn } from "@/lib/utils"; import { Badge } from "@/components/ui/badge"; import { IconLink } from "./_components/changelog-layout"; import { BookIcon, GitHubIcon, XIcon } from "./_components/icons"; import { DiscordLogoIcon } from "@radix-ui/react-icons"; import { StarField } from "./_components/stat-field"; const ChangelogPage = () => { // @ts-ignore const page = changelog.getPage(); if (page == null) { notFound(); } const MDX = page.data.body; return (

All of the changes made will be{" "} available here.

Better Auth is comprehensive authentication library for TypeScript that provides a wide range of features to make authentication easier and more secure.


Documentation GitHub Community

Brought to you by{" "} BETTER-AUTH.

(

), h3: (props) => (

), p: (props) =>

, ul: (props) => (

    ), li: (props) =>
  • , a: ({ className, ...props }: any) => ( ), Badge: (props) => ( ), }} />

); }; export default ChangelogPage; function Glow() { let id = useId(); return (
); }