mirror of
https://github.com/soconnor0919/lewisburg-coffee.git
synced 2026-02-04 23:56:32 -05:00
feat: Implement glassmorphism UI with amber accents, add About and Copyright components, and update license to GPLv3.
This commit is contained in:
@@ -1,4 +1,16 @@
|
||||
export const COFFEE_SHOPS = [
|
||||
export interface CoffeeShop {
|
||||
id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
lat: number;
|
||||
lng: number;
|
||||
address: string;
|
||||
phone: string;
|
||||
website: string;
|
||||
image: string;
|
||||
}
|
||||
|
||||
export const COFFEE_SHOPS: CoffeeShop[] = [
|
||||
{
|
||||
id: 1,
|
||||
name: "Amami Kitchen",
|
||||
|
||||
Reference in New Issue
Block a user