mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import Section from "@/components/landing/section";
|
|
import Hero from "@/components/landing/hero";
|
|
import Features from "@/components/features";
|
|
import Link from "next/link";
|
|
async function getGitHubStars() {
|
|
try {
|
|
const response = await fetch(
|
|
"https://api.github.com/repos/better-auth/better-auth",
|
|
{
|
|
next: {
|
|
revalidate: 60,
|
|
},
|
|
},
|
|
);
|
|
if (!response?.ok) {
|
|
return null;
|
|
}
|
|
const json = await response.json();
|
|
const stars = parseInt(json.stargazers_count).toLocaleString();
|
|
return stars;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default async function HomePage() {
|
|
const stars = await getGitHubStars();
|
|
return (
|
|
<main className="h-min mx-auto overflow-x-hidden">
|
|
<div className="w-full bg-gradient-to-br border-b dark:border-zinc-800 border-zinc-200 dark:from-zinc-900 dark:to-zinc-950 from-zinc-150 to-zinc-100 dark:text-white text-center py-2">
|
|
<p className="text-sm px-4">
|
|
🎉 Introducing{" "}
|
|
<Link
|
|
target="_blank"
|
|
href="https://better-auth.build"
|
|
className="text-blue-500 hover:text-blue-600 underline"
|
|
>
|
|
Infrastructure
|
|
</Link>{" "}
|
|
| Join the <span className="font-bold">waitlist</span> to our infra
|
|
layer that provides all the missing pieces you need to own your auth
|
|
with confidence!
|
|
</p>
|
|
</div>
|
|
<Section
|
|
className="mb-1 overflow-y-clip"
|
|
crosses
|
|
crossesOffset="lg:translate-y-[5.25rem]"
|
|
customPaddings
|
|
id="hero"
|
|
>
|
|
<Hero />
|
|
<Features stars={stars} />
|
|
<hr className="h-px bg-gray-200" />
|
|
</Section>
|
|
</main>
|
|
);
|
|
}
|