import Link from 'next/link'
import { ReactNode } from 'react'

interface AppCardLinkProps {
  children: ReactNode
  href: string
}

export default function AppCardLink({ children, href }: AppCardLinkProps) {
  return (
    <Link href={href} className="bg-white p-6 rounded-lg shadow-md">
      {children}
    </Link>
  )
}
