-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (131 loc) · 6.51 KB
/
index.html
File metadata and controls
137 lines (131 loc) · 6.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AnyTime Support</title>
<meta
name="description"
content="Support information for AnyTime, the timezone calculator for iPhone, iPad, and Mac."
>
<link rel="icon" type="image/png" sizes="1024x1024" href="icon.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="shell">
<header class="nav">
<a class="brand" href="index.html">
<img class="brand-mark" src="icon.png" alt="">
<span>AnyTime</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false" onclick="this.setAttribute('aria-expanded',this.getAttribute('aria-expanded')==='false'?'true':'false');this.closest('.nav').querySelector('.nav-links').classList.toggle('open')">
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
</button>
<nav class="nav-links" aria-label="Primary">
<a class="nav-link" href="privacy.html">Privacy</a>
</nav>
</header>
<section class="hero">
<p class="eyebrow">iPhone, iPad, and Mac</p>
<h1>Timezone math without the mess.</h1>
<p class="lead">
Compare cities, shift a reference time, paste times from text, and plan across time zones.
</p>
<div class="hero-actions">
<a class="button primary" href="https://itunes.apple.com/us/app/anytime-timezone-calculator/id1291735859">Download on the App Store</a>
</div>
</section>
<main>
<!-- Screenshots with theme toggle -->
<section class="screenshot-section">
<div class="theme-toggle" role="radiogroup" aria-label="Screenshot theme">
<button class="theme-btn active" data-theme="day" aria-pressed="true" onclick="setTheme('day')">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"><circle cx="8" cy="8" r="3.5" stroke="currentColor" stroke-width="1.5"/><path d="M8 1v2M8 13v2M1 8h2M13 8h2M3.05 3.05l1.41 1.41M11.54 11.54l1.41 1.41M3.05 12.95l1.41-1.41M11.54 4.46l1.41-1.41" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></svg>
Light
</button>
<button class="theme-btn" data-theme="dark" aria-pressed="false" onclick="setTheme('dark')">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.36 10.06A6 6 0 0 1 5.94 2.64 6 6 0 1 0 13.36 10.06Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
Dark
</button>
</div>
<div class="screenshot-grid">
<figure class="screenshot-item">
<img class="shot-day" src="images/day_home.png" alt="AnyTime home screen in light mode">
<img class="shot-dark" src="images/dark_home.png" alt="AnyTime home screen in dark mode" hidden>
<figcaption>World clocks</figcaption>
</figure>
<figure class="screenshot-item">
<img class="shot-day" src="images/day_dial.png" alt="Reference time picker in light mode">
<img class="shot-dark" src="images/dark_dial.png" alt="Reference time picker in dark mode" hidden>
<figcaption>Reference time</figcaption>
</figure>
<figure class="screenshot-item">
<img class="shot-day" src="images/day_search.png" alt="City search in light mode">
<img class="shot-dark" src="images/dark_search.png" alt="City search in dark mode" hidden>
<figcaption>Search</figcaption>
</figure>
<figure class="screenshot-item">
<img class="shot-day" src="images/day_settings.png" alt="Settings in light mode">
<img class="shot-dark" src="images/dark_settings.png" alt="Settings in dark mode" hidden>
<figcaption>Settings</figcaption>
</figure>
</div>
</section>
<script>
function setTheme(t) {
document.querySelectorAll('.shot-day').forEach(function(el) { el.hidden = t !== 'day'; });
document.querySelectorAll('.shot-dark').forEach(function(el) { el.hidden = t !== 'dark'; });
document.querySelectorAll('.theme-btn').forEach(function(el) {
var active = el.dataset.theme === t;
el.classList.toggle('active', active);
el.setAttribute('aria-pressed', active);
});
}
</script>
<!-- Compact info cards -->
<div class="grid">
<section class="card span-4">
<h2>Support</h2>
<p>
Bug reports, questions, or App Store review follow-up:
<a href="mailto:hi@hewig.dev">hi@hewig.dev</a>
</p>
<div class="hero-actions">
<a class="button secondary" href="https://github.com/hewigovens/AnyTime">Source Code</a>
<a class="button secondary" href="https://github.com/hewigovens/AnyTime/issues">Issue Tracker</a>
</div>
</section>
<section class="card span-4">
<h2>What It Does</h2>
<ul>
<li>Compare multiple time zones from one reference clock</li>
<li>Shift time by hours or days for scheduling across regions</li>
<li>Paste natural-language times and convert them automatically</li>
<li>Search cities, regions, abbreviations, and UTC offsets</li>
<li>Create Calendar events from a timezone card</li>
<li>Drag to reorder, swipe for quick actions</li>
</ul>
</section>
<section class="card span-4">
<h2>Technology</h2>
<ul>
<li>SwiftUI on iOS 17+ and macOS 14+</li>
<li>Local search index for fast city and offset lookup</li>
<li>Smart Paste with date extraction and geocoding</li>
<li>Optional location access for nearby timezone matching</li>
<li>Optional Calendar access for event creation</li>
<li>All data stored locally on-device</li>
</ul>
</section>
</div>
</main>
<footer class="footer">
<span>AnyTime support site</span>
<span>Maintained for the current App Store release.</span>
</footer>
</div>
</body>
</html>