feat: Implement glassmorphism UI with amber accents, add About and Copyright components, and update license to GPLv3.

This commit is contained in:
Sean O'Connor
2026-02-03 18:30:32 -05:00
parent e89a6946cb
commit b7fad1e691
16 changed files with 339 additions and 179 deletions

View File

@@ -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",