import Link from 'next/link' const linkClasses = "w-12 h-12 md:w-14 md:h-14 xl:w-20 xl:h-20 inline-block" const PreviewTile = ({ img, slug, title, href=false }) => (
{href ? : }
) const Worm = ({ list, size=20 }) => { return (
{list.map(item => )}
) } export default Worm