A better way to build
Clean, centered feature cards inside a floating section that stands out from the page background.
Instant builds
Pages compile in milliseconds so you never wait for feedback during development.
Themeable
Switch between color schemes with a single token change. Dark mode included.
Secure defaults
Content Security Policy headers, sanitized output, and no inline scripts.
i18n ready
Built-in support for multi-language content and locale-aware routing.
Configurable
Every component exposes a clean props API so you can adapt it to your needs.
Polished UI
Subtle animations, consistent spacing, and refined typography out of the box.
---
import Features5Block from "@/components/blocks/features-5.astro"
---
<Features5Block
title="A better way to build"
description="Clean, centered feature cards inside a floating section that stands out from the page background."
features={[
{
icon: "zap",
title: "Instant builds",
description:
"Pages compile in milliseconds so you never wait for feedback during development.",
},
{
icon: "palette",
title: "Themeable",
description:
"Switch between color schemes with a single token change. Dark mode included.",
},
{
icon: "lock",
title: "Secure defaults",
description:
"Content Security Policy headers, sanitized output, and no inline scripts.",
},
{
icon: "globe",
title: "i18n ready",
description:
"Built-in support for multi-language content and locale-aware routing.",
},
{
icon: "settings",
title: "Configurable",
description:
"Every component exposes a clean props API so you can adapt it to your needs.",
},
{
icon: "sparkles",
title: "Polished UI",
description:
"Subtle animations, consistent spacing, and refined typography out of the box.",
},
]}
/>