-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
84 lines (79 loc) · 3.17 KB
/
about.html
File metadata and controls
84 lines (79 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About AnyTime</title>
<meta
name="description"
content="About 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="index.html">Support</a>
<a class="nav-link current" href="about.html">About</a>
<a class="nav-link" href="privacy.html">Privacy</a>
</nav>
</header>
<section class="hero">
<p class="eyebrow">About</p>
<h1>AnyTime</h1>
<p class="lead">
A reference-first timezone calculator. Pick one city as the anchor and see every other zone relative to it.
</p>
</section>
<main>
<div class="grid">
<section class="card span-6">
<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-6">
<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>
<section class="card contact-card">
<h2>Contact</h2>
<p>
For support or review-related questions, email
<a href="mailto:hi@hewig.dev">hi@hewig.dev</a>.
</p>
</section>
</main>
<footer class="footer">
<span>AnyTime support site</span>
<span>Maintained for the current App Store release.</span>
</footer>
</div>
</body>
</html>