mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
* feat: hero section revamp * fix: lines and border issue * fix: changelog ux * fix: better * fix: ui revamp * fix: font --------- Co-authored-by: Bereket Engida <86073083+Bekacru@users.noreply.github.com>
22 lines
477 B
TypeScript
22 lines
477 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 mx-auto ">
|
|
<Section
|
|
className="-z-1 mb-1 overflow-y-clip"
|
|
crosses
|
|
crossesOffset="lg:translate-y-[5.25rem]"
|
|
customPaddings
|
|
id="hero"
|
|
>
|
|
<Hero />
|
|
<Features />
|
|
<hr className="h-px bg-gray-200"/>
|
|
|
|
</Section>
|
|
</main>
|
|
);
|
|
}
|