Simple, effective, reliable
A clean text-only layout when features need to speak for themselves without icons or images.
Fewer decisions
This style trims each feature to one headline and one supporting sentence so the page stays focused.
Cleaner previews
Without icons or images, the section loads instantly and reads well at any viewport width.
Better reuse
Plain text cards work for any product vertical without custom illustration or icon sets.
Consistent rhythm
Border-top separators create a steady vertical cadence that anchors the reading flow.
Scannable layout
Three-column grid on desktop collapses to a single column on mobile without extra breakpoints.
Content first
No visual noise to distract from the copy. Perfect for documentation and changelog pages.
---
import Features6Block from "@/components/blocks/features-6.astro"
---
<Features6Block
title="Simple, effective, reliable"
description="A clean text-only layout when features need to speak for themselves without icons or images."
buttons={[
{ label: "Get started", href: "#" },
{ label: "Learn more", href: "#", variant: "outline" },
]}
features={[
{
title: "Fewer decisions",
description:
"This style trims each feature to one headline and one supporting sentence so the page stays focused.",
},
{
title: "Cleaner previews",
description:
"Without icons or images, the section loads instantly and reads well at any viewport width.",
},
{
title: "Better reuse",
description:
"Plain text cards work for any product vertical without custom illustration or icon sets.",
},
{
title: "Consistent rhythm",
description:
"Border-top separators create a steady vertical cadence that anchors the reading flow.",
},
{
title: "Scannable layout",
description:
"Three-column grid on desktop collapses to a single column on mobile without extra breakpoints.",
},
{
title: "Content first",
description:
"No visual noise to distract from the copy. Perfect for documentation and changelog pages.",
},
]}
/>