feat: Implement detailed coffee shop profiles with address, phone, website, and image, displayed in an updated drawer component.

This commit is contained in:
2025-12-04 23:18:20 -05:00
parent 75d6fe874b
commit 26c95e2a27
4 changed files with 145 additions and 35 deletions

View File

@@ -13,6 +13,10 @@ interface CoffeeShop {
description: string;
lat: number;
lng: number;
address: string;
phone: string;
website: string;
image: string;
}
interface MapProps {