import type { ImageType } from '@/types' import Link from 'next/link' import ProjectImage from '../ProjectImage' import styles from './index.module.css' type Props = { title: string slug: string image: ImageType } export default function ProjectPreview({ title, slug, image }: Props) { return ( ) }