forked from fayharinn/StoreLocalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 2.71 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌍</text></svg>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>App Store & Play Store Localizer - Translate Your Apps Instantly</title>
<meta name="title" content="App Store & Play Store Localizer - Translate Your Apps Instantly" />
<meta name="description" content="Free, open-source tool to translate your App Store and Google Play listings using AI. Support for 40+ languages." />
<meta name="keywords" content="xcstrings, localization, iOS, macOS, Android, Google Play, Swift, translation, i18n, internationalization, GPT, AI translation, App Store Connect, ASO" />
<meta name="author" content="Fayhe" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="App Store & Play Store Localizer - Translate Your Apps Instantly" />
<meta property="og:description" content="Free, open-source tool to translate your App Store and Google Play listings using AI. Support for 40+ languages." />
<meta property="og:image" content="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&h=630&fit=crop" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="App Store & Play Store Localizer - Translate Your Apps Instantly" />
<meta property="twitter:description" content="Free, open-source tool to translate your App Store and Google Play listings using AI." />
<meta property="twitter:image" content="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&h=630&fit=crop" />
<!-- Theme Color - Dynamic based on theme -->
<meta name="theme-color" content="#7c3aed" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#8b5cf6" media="(prefers-color-scheme: light)" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- Prevent flash of wrong theme -->
<script>
(function() {
const theme = localStorage.getItem('localizer-theme') || 'system';
const isDark = theme === 'dark' || (theme === 'system' && window.matchMedia('(prefers-color-scheme: dark)').matches);
document.documentElement.classList.toggle('dark', isDark);
document.documentElement.classList.toggle('light', !isDark);
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>