feat: add PWA manifest and Apple icon, and enhance map with fly-to selected shop functionality.

This commit is contained in:
2025-12-05 02:03:56 -05:00
parent 97bcf5e61c
commit b31d488e25
5 changed files with 88 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import "~/styles/globals.css";
import { type Metadata } from "next";
import { type Metadata, type Viewport } from "next";
import { PT_Serif } from "next/font/google";
import { ThemeProvider } from "~/components/ThemeProvider";
@@ -11,6 +11,14 @@ export const metadata: Metadata = {
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
export const viewport: Viewport = {
themeColor: "#8B4513",
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: false,
};
const ptSerif = PT_Serif({
subsets: ["latin"],
weight: ["400", "700"],