mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-02 11:03:49 -05:00
Co-authored-by: Maxwell <145994855+ping-maxwell@users.noreply.github.com> Co-authored-by: Maxwell Weru <1645026+mburumaxwell@users.noreply.github.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Slava Yultyyev <yultyyev@gmail.com> Co-authored-by: Joél Solano <joelsolano@jsolano.de>
19 lines
643 B
TypeScript
19 lines
643 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">
|
|
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 with the latest news
|
|
and updates.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|