mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
* chore: wip * wip * feat: mcp plugin * wip * chore: fix lock file * clean up * schema * docs * chore: lint * chore: release v1.2.9-beta.1 * blog * chore: lint
19 lines
432 B
TypeScript
19 lines
432 B
TypeScript
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Blog - Better Auth",
|
|
description: "Latest updates, articles, and insights about Better Auth",
|
|
};
|
|
|
|
interface BlogLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function BlogLayout({ children }: BlogLayoutProps) {
|
|
return (
|
|
<div className="relative flex min-h-screen flex-col">
|
|
<main className="flex-1">{children}</main>
|
|
</div>
|
|
);
|
|
}
|