This commit is contained in:
2025-08-18 22:33:54 +02:00
parent f1cec99486
commit 08b25f008b
457 changed files with 41656 additions and 11982 deletions

14
src/components/link.jsx Normal file
View File

@@ -0,0 +1,14 @@
import NextLink from 'next/link'
import { clsx } from 'clsx'
export function Link({ href, className, children, ...props }) {
return (
<NextLink
href={href}
className={clsx(className)}
{...props}
>
{children}
</NextLink>
)
}