Files
better-auth/docs/app/community/_components/header.tsx
Dagmawi Babi 84f8f659ce docs: add github star count in the community section (#3960)
* github star count

* cubix issue fix

---------

Co-authored-by: Bereket Engida <86073083+Bekacru@users.noreply.github.com>
2025-08-12 18:48:20 -07:00

18 lines
616 B
TypeScript

export default function CommunityHeader() {
return (
<div className="h-full flex flex-col justify-center items-center text-white">
<div className="max-w-6xl mx-auto px-4 py-16">
<div className="text-center">
<h1 className="text-4xl tracking-tighter md:text-5xl mt-3 font-normal mb-6 text-stone-800 dark:text-white">
Open Source Community
</h1>
<p className="dark:text-gray-400 max-w-md mx-auto text-stone-800">
join <span className="italic font-bold">better-auth</span> community
to get help, share ideas, and stay up to date.
</p>
</div>
</div>
</div>
);
}