pancy fants

This commit is contained in:
john 2025-05-06 12:53:32 +02:00
parent a4fd3a3556
commit b6633d6f25
15 changed files with 339 additions and 116 deletions

View file

@ -0,0 +1,18 @@
import { PropsWithChildren } from 'react'
interface PrimaryLinkButtonProps {
href: string
className?: string
}
export default function PrimaryLinkButton({
href,
className: extraClasses = '',
children,
}: PropsWithChildren<PrimaryLinkButtonProps>) {
return (
<a href={href} className={`primary-button text-center ${extraClasses}`}>
{children}
</a>
)
}