- Add PWA configuration (manifest.json, service worker) - Implement light/dark theme system with purple accents - Replace desktop navbar with mobile-first bottom navigation - Redesign auth forms with mobile-optimized UI - Update Dashboard with gradient cards and touch-friendly actions - Add safe area support for iOS devices - Implement theme context with system preference detection - Optimize touch targets and mobile interactions - Add offline functionality through service worker
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, user-scalable=no" />
|
|
<meta name="theme-color" content="#8b5cf6" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<meta name="apple-mobile-web-app-title" content="TCG Vault" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="application-name" content="TCG Vault" />
|
|
<meta name="msapplication-TileColor" content="#8b5cf6" />
|
|
<meta name="msapplication-config" content="%PUBLIC_URL%/browserconfig.xml" />
|
|
|
|
<!-- iOS Splash Screen -->
|
|
<link rel="apple-touch-startup-image" href="%PUBLIC_URL%/logo512.png" />
|
|
|
|
<meta name="description" content="Mobile-first PWA for managing your trading card game collections, decks, and scanning cards with AI-powered OCR" />
|
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
<title>TCG Vault</title>
|
|
|
|
<style>
|
|
/* Prevent flash of unstyled content */
|
|
html {
|
|
background-color: #ffffff;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background-color: #0f172a;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|