import Link from "next/link"; import { RestaurantCardType } from "../page"; interface Props { restaurant: RestaurantCardType; } export default function RestaurantCard({restaurant}: Props) { return (

{restaurant.name}

*****

77 reviews

{restaurant.cuisine.name}

$$$$

{restaurant.location.name}

Booked 3 times today

); }