'use client'; import clsx from 'clsx'; import Link from 'next/link'; import { FC, PropsWithChildren } from 'react'; interface Props { href: string; className?: string; } export const LinkButton: FC> = ({ className, href, children, }: PropsWithChildren) => { return ( ); };