2025-07-21 14:53:06 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
2025-07-22 19:52:39 -04:00
|
|
|
<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" />
|
2025-07-21 14:53:06 -04:00
|
|
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
|
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
2025-07-22 19:52:39 -04:00
|
|
|
<title>TCG Vault</title>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
/* Prevent flash of unstyled content */
|
|
|
|
|
html {
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
html {
|
|
|
|
|
background-color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2025-07-21 14:53:06 -04:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|