Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 89 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,95 @@
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@sim_taiwan" />

<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#ffffff" />
<!-- Favicons (the manifest <link> is injected by vite-plugin-pwa) -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/icon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/icon-16x16.png"
/>

<!-- iOS / standalone home-screen support -->
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="SIM Prayers" />

<!-- iOS standalone launch (splash) screens — generated by
scripts/generate-pwa-assets.mjs -->
<link
rel="apple-touch-startup-image"
media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="/icons/splash/apple-splash-430-932-3x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="/icons/splash/apple-splash-393-852-3x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="/icons/splash/apple-splash-390-844-3x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="/icons/splash/apple-splash-414-896-3x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-414-896-2x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-375-667-2x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-1024-1366-2x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-834-1194-2x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 820px) and (device-height: 1180px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-820-1180-2x.png"
/>
<link
rel="apple-touch-startup-image"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="/icons/splash/apple-splash-768-1024-2x.png"
/>

<!-- Theme color follows light/dark to match the app background -->
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#f8fafc"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#020817"
/>
</head>

<body>
Expand Down
Loading
Loading