// @ts-nocheck
import Image from "next/image";
import Link from "next/link";
import mediaMap from "../../public/notion-media/media-map.json";

// The reason why this Card component is specific to a database is because notion-on-next cannot know what properties are in your database. You may want different cards for different databases.
// It is up to you to complete this component by creating components for your database properties.

export const DATABASENAMEPASCALCard = ({ page, databaseId }) => {
  return (
    <Link
      href={`/DATABASENAMESPINAL/${page.slug}`}
      key={page.id}
      style={{
        width: "100%",
        boxShadow: "0 0 8px 0 rgba(0, 0, 0, 0.1)",
        padding: "16px",
        borderRadius: "8px",
        border: "1px solid #9ca3af",
      }}
    >
      <div style={{ display: "flex" }}>
        <div style={{ overflow: "hidden", width: "50%", height: "300px" }}>
          {mediaMap[databaseId]?.[page.id]?.cover && (
            <Image
              alt={page.title || "Cover Image for " + page.id}
              src={mediaMap[databaseId]?.[page.id]?.cover}
              width={300}
              height={300}
              style={{
                objectFit: "cover",
                objectPosition: "center",
                width: "100%",
                height: "100%",
              }}
            />
          )}
        </div>
        <div style={{ width: "50%", marginLeft: "16px" }}>
          <div
            style={{ fontSize: "24px", fontWeight: 700, marginBottom: "24px" }}
          >
            {page.title}
          </div>
          <div>{new Date(page.created_time).toLocaleDateString()}</div>
        </div>
      </div>
    </Link>
  );
};
