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

---
type: block
category: "links"
title: "Links 2"
description: "A carousel of related links with compact visual previews for each destination."
---

```astro live props={{ name: 'links-2' }}
---
import Links2Block from "@/components/blocks/links-2.astro"
---

<Links2Block
  title="Explore components and blocks"
  description="A carousel of related links with compact visual previews for each destination."
  links={[
    {
      href: "/components/section/",
      title: "Section",
      description: "Structure page sections with consistent spacing.",
      preview: "section",
    },
    {
      href: "/components/card/",
      title: "Card",
      description: "Group related content and actions.",
      preview: "card",
    },
    {
      href: "/components/accordion/",
      title: "Accordion",
      description: "Collapse secondary content into stacked panels.",
      preview: "accordion",
    },
    {
      href: "/components/tabs/",
      title: "Tabs",
      description: "Switch between related panels of content.",
      preview: "tabs",
    },
  ]}
/>
```
