mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
21 lines
412 B
TypeScript
21 lines
412 B
TypeScript
import Section from "@/components/landing/section";
|
|
import Hero from "@/components/landing/hero";
|
|
import Features from "@/components/features";
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="h-min">
|
|
<Section
|
|
className="-z-1 mb-1"
|
|
crosses
|
|
crossesOffset="lg:translate-y-[5.25rem]"
|
|
customPaddings
|
|
id="hero"
|
|
|
|
>
|
|
<Hero />
|
|
<Features />
|
|
</Section>
|
|
</main>
|
|
);
|
|
}
|