mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
- Swap Jotai `movieStatsAtom`/`episodeStatsAtom` atoms for `useState` + `useEffect` calling `getStatsAction` directly on period change - Remove dependency on `lib/atoms/stats` module - Add touch-friendly tap target padding to `inlineTriggerClass` via negative margin compensation on mobile
26 lines
538 B
TypeScript
26 lines
538 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "Sofa",
|
|
short_name: "Sofa",
|
|
start_url: "/",
|
|
scope: "/",
|
|
display: "standalone",
|
|
icons: [
|
|
{
|
|
src: "/web-app-manifest-192x192.png",
|
|
sizes: "192x192",
|
|
type: "image/png",
|
|
purpose: "maskable",
|
|
},
|
|
{
|
|
src: "/web-app-manifest-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
purpose: "maskable",
|
|
},
|
|
],
|
|
};
|
|
}
|