Link
A styled anchor with sensible defaults: underline on hover, and honest new-tab behavior for external links.
Internal
<Link href="/guides/theming">Theming guide</Link>External
<Link href="https://astro.build" external>Astro docs</Link>Underline
<Link href="/" underline="always">Always</Link>Props
| Prop | Type | Default | Description |
|---|---|---|---|
href | string | - | Destination. |
external | boolean | false | New tab + icon + hidden warning. |
underline | always | hover | none | hover | Underline policy. |
Accessibility
- External links add
target + relAND announce "opens in new tab" to screen readers. - Underline on hover keeps body text calm;
alwaysis better inside dense prose.