Skip to content

Commit 37d1e1f

Browse files
feat: Add animated bento grid features to landing page
Co-authored-by: iza <[email protected]>
1 parent f7bf290 commit 37d1e1f

File tree

3 files changed

+415
-686
lines changed

3 files changed

+415
-686
lines changed

apps/docs/app/(home)/page.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Footer } from '@/components/footer';
22
import { Description } from '@/components/landing/description';
33
import FAQ from '@/components/landing/faq';
4+
import { FeaturesBento } from '@/components/landing/features-bento';
45
import { GridCards } from '@/components/landing/grid-cards';
56
import Hero from '@/components/landing/hero';
67
import Section from '@/components/landing/section';
@@ -75,6 +76,16 @@ export default function HomePage() {
7576
</div>
7677
</Section>
7778

79+
{/* Features Bento Grid Section */}
80+
<Section
81+
className="border-border border-b bg-background/30 py-16 lg:py-24"
82+
id="features"
83+
>
84+
<div className="mx-auto w-full max-w-7xl px-4 sm:px-6 lg:px-8">
85+
<FeaturesBento />
86+
</div>
87+
</Section>
88+
7889
{/* Grid Cards Section */}
7990
<Section className="border-border border-b py-16 lg:py-24" id="cards">
8091
<div className="mx-auto w-full max-w-7xl px-4 sm:px-6 lg:px-8">

0 commit comments

Comments
 (0)