fix: use link component for all types of links to add proper styling to set text decoration none when external

This commit is contained in:
Christian Andolf
2025-04-29 11:22:48 +02:00
parent 91933f47cf
commit 244560cfac
2 changed files with 7 additions and 29 deletions

View File

@@ -12,10 +12,3 @@ export interface ContentCardProps {
promoText?: string
className?: string
}
export interface ContentCardLinkProps {
href: string
openInNewTab?: boolean
isExternal?: boolean
children: React.ReactNode
}