Navigation: [/sitemap.md](/sitemap.md)

---
type: block
category: "features"
title: "Features 6"
description: "A clean text-only layout when features need to speak for themselves without icons or images."
---

```astro live props={{ name: 'features-6' }}
---
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.",
    },
  ]}
/>
```
