Files
better-auth/docs/app/page.tsx
Kinfe Michael Tariku 2a576c8ff3 Og image generator and small fix (#4)
* feat: og and ui

* fix: lines and border issue

* fix: changelog ux

* fix: better

* fix: ui revamp

* feat: og image and small fix

* fix: docs and parsing
2024-09-27 15:50:44 +03:00

21 lines
524 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>
);
}