diff options
Diffstat (limited to 'apps/web/app/(marketing)/_components/feature-grid.tsx')
| -rw-r--r-- | apps/web/app/(marketing)/_components/feature-grid.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(marketing)/_components/feature-grid.tsx b/apps/web/app/(marketing)/_components/feature-grid.tsx index 5c5e880..3a52a5c 100644 --- a/apps/web/app/(marketing)/_components/feature-grid.tsx +++ b/apps/web/app/(marketing)/_components/feature-grid.tsx @@ -68,7 +68,7 @@ const FEATURES = [ export function FeatureGrid() { return ( - <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3"> + <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"> {FEATURES.map((feature) => ( <div key={feature.title} |