2024-04-18 14:42:47 -04:00

26 lines
708 B
TypeScript

import { cn } from "@/lib/utils"
import Link from "next/link"
export default function ProjectCard({
children,
id,
className,
}: {
children: React.ReactNode
id: string
className?: string
}) {
return (
<Link
href={`/code/${id}`}
className={cn(
"rounded-lg border bg-card text-card-foreground shadow h-48 p-[1px] gradient-project-card-bg cursor-pointer transition-all focus-visible:outline-none focus-visible:ring-offset-2 focus-visible:ring-offset-background focus-visible:ring-2 focus-visible:ring-ring"
)}
>
<div className="rounded-[7px] p-4 h-full flex flex-col justify-between gradient-project-card">
{children}
</div>
</Link>
)
}