mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
* v1.3 init anouncement changelog docs * revamp on guide * stale * saml * code block * update * update * revamp and update * feat: changelog image * docs and og image * revert * update * v1.3 * cont * init * update * chore add count method * update og * update og --------- Co-authored-by: Kinfe123 <kinfishtech@gmail.com>
29 lines
613 B
TypeScript
29 lines
613 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"
|
|
style={{
|
|
scrollbarWidth: "none",
|
|
scrollbarColor: "transparent transparent",
|
|
//@ts-expect-error
|
|
"&::-webkit-scrollbar": {
|
|
display: "none",
|
|
},
|
|
}}
|
|
>
|
|
<main className="flex-1">{children}</main>
|
|
</div>
|
|
);
|
|
}
|