diff options
| author | Fuwn <[email protected]> | 2026-02-10 01:42:03 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 01:42:03 -0800 |
| commit | a29602d87a6f68b3fb4cfcad3ff65b4197596c41 (patch) | |
| tree | 7c74c0477ac30fdc669ee90e6200e45016a902d4 | |
| parent | fix: widen features section to allow 4-column grid on xl screens (diff) | |
| download | asa.news-a29602d87a6f68b3fb4cfcad3ff65b4197596c41.tar.xz asa.news-a29602d87a6f68b3fb4cfcad3ff65b4197596c41.zip | |
fix: use max-w-screen-xl for features section to fit 4-column grid
| -rw-r--r-- | apps/web/app/(marketing)/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(marketing)/page.tsx b/apps/web/app/(marketing)/page.tsx index 6b98990..7a1a17c 100644 --- a/apps/web/app/(marketing)/page.tsx +++ b/apps/web/app/(marketing)/page.tsx @@ -226,7 +226,7 @@ export default async function LandingPage() { <InteractiveDemo showcaseEntries={showcaseEntries} /> </section> - <section className="mx-auto max-w-6xl px-6 pb-16"> + <section className="mx-auto max-w-screen-xl px-6 pb-16"> <h2 className="mb-6 text-center text-text-primary">features</h2> <FeatureGrid /> </section> |