import Image from "next/image"; import Link from "next/link"; import type { ShopCardProps } from "./Card.types"; export default function ShopCard({ name, address, image }: ShopCardProps) { return (
{/* Shop image */}
{name}
{/* Card body */}

{name}

View menu
{address}
); }