Files
better-auth/docs/app/page.tsx
Kinfe Michael Tariku 854b7f342e fix/ui ux (#3)
* 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>
2024-09-17 17:47:43 +03:00

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>
);
}