Link

Link is a component that allows you to create a link to another page or resource.

'use client'
import { Link } from '@nerdfish/ui'
export function LinkExample() {
return (
<Link href="https://www.nerdfish.be" external>
Click me
</Link>
)
}

Usage

import { Link } from '@nerdfish/ui'
<Link href="https://www.nerdfish.be" external>
Click me
</Link>