# Footer

A responsive footer shell with brand, navigation links, social links, and copyright slots.

## Notes

- Footer keeps links as plain anchors so consumer sites retain SEO-friendly markup.
- Use slots when the object API is not expressive enough for your footer content.

## Properties

| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
| brand | `string` | 'Snurble' | Brand text. |
| links | `FooterLink[]` | - | Footer navigation links. |
| socialLinks | `FooterLink[]` | - | Social or external links. |
| copyright | `string` | - | Copyright text override. |
| class | `string` | - | Additional CSS classes. |

## Example

```astro
<Footer brand="Snurble" links={[{ label: "Components", href: "/components" }]} />
```
