Link

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

tsx
'use client'

import { Link } from '@nerdfish/ui'

export function LinkExample() {
	return (
		<Link href="https://www.nerdfish.be" external>
			Click me
		</Link>
	)
}

Usage

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