import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faChevronRight } from "@fortawesome/free-solid-svg-icons"; import { Collection } from "@prisma/client"; import Link from "next/link"; export default function ({ collection }: { collection: Collection }) { const formattedDate = new Date(collection.createdAt).toLocaleString("en-US", { year: "numeric", month: "short", day: "numeric", }); return (
{collection.name}
{formattedDate}