Skip to content

Commit 3872ff4

Browse files
committed
add index and privacy page
1 parent f8da9df commit 3872ff4

5 files changed

Lines changed: 558 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
AnyTime is yet another timezone utility app that mainly focus on informative and pragmatic.
1+
AnyTime support site for App Store Support URL and Privacy Policy URL.
22

3-
[Submit an issue](https://github.com/FourplexLabs/AnyTime/issues)
3+
Pages:
4+
- `index.html` for support
5+
- `privacy.html` for privacy policy

icon.png

18.7 KB
Loading

index.html

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>AnyTime Support</title>
7+
<meta
8+
name="description"
9+
content="Support information for AnyTime, the timezone calculator for iPhone, iPad, and Mac."
10+
>
11+
<link rel="icon" type="image/png" sizes="1024x1024" href="icon.png">
12+
<link rel="apple-touch-icon" href="icon.png">
13+
<link rel="stylesheet" href="styles.css">
14+
</head>
15+
<body>
16+
<div class="shell">
17+
<header class="nav">
18+
<a class="brand" href="index.html">
19+
<img class="brand-mark" src="icon.png" alt="">
20+
<span>AnyTime</span>
21+
</a>
22+
<nav class="nav-links" aria-label="Primary">
23+
<a class="nav-link current" href="index.html">Support</a>
24+
<a class="nav-link" href="privacy.html">Privacy</a>
25+
</nav>
26+
</header>
27+
28+
<section class="hero">
29+
<p class="eyebrow">iPhone, iPad, and Mac</p>
30+
<h1>Timezone math without the mess.</h1>
31+
<p class="lead">
32+
AnyTime helps you compare cities, shift a reference time, paste times from text, and turn
33+
timezone planning into something quick and readable.
34+
</p>
35+
<div class="hero-actions">
36+
<a class="button primary" href="mailto:hi@hewig.dev">Email Support</a>
37+
<a class="button secondary" href="privacy.html">Privacy Policy</a>
38+
</div>
39+
</section>
40+
41+
<main class="grid">
42+
<section class="card span-7">
43+
<h2>Support</h2>
44+
<p>
45+
For bug reports, App Store review follow-up, product questions, or account-related requests,
46+
contact <a href="mailto:hi@hewig.dev">hi@hewig.dev</a>.
47+
</p>
48+
<p>
49+
If you email support, include the device model, OS version, app version, and a short
50+
description of what you expected versus what happened.
51+
</p>
52+
<div class="hero-actions">
53+
<a class="button secondary" href="https://github.com/hewigovens/AnyTime">Source Code</a>
54+
<a class="button secondary" href="https://github.com/hewigovens/AnyTime/issues">Issue Tracker</a>
55+
</div>
56+
</section>
57+
58+
<section class="card span-5">
59+
<h2>What AnyTime Does</h2>
60+
<ul>
61+
<li>Compare multiple time zones from one reference clock.</li>
62+
<li>Shift time by hours or days for scheduling across regions.</li>
63+
<li>Search cities and offsets quickly.</li>
64+
<li>Paste natural-language times and convert them into a reference time.</li>
65+
<li>Create Calendar events from a timezone card when you want to save a plan.</li>
66+
</ul>
67+
</section>
68+
69+
<section class="card span-12">
70+
<h2>Highlights</h2>
71+
<div class="mini-grid">
72+
<article class="card">
73+
<h3>Reference-first</h3>
74+
<p>
75+
Keep one timezone as the anchor and see the rest relative to it instead of doing
76+
mental conversions every time.
77+
</p>
78+
</article>
79+
<article class="card">
80+
<h3>Location-aware</h3>
81+
<p>
82+
The app can highlight timezones that match your current location and make it easier
83+
to pick the nearby city during search.
84+
</p>
85+
</article>
86+
<article class="card">
87+
<h3>Local and lightweight</h3>
88+
<p>
89+
Your saved clocks stay on-device. AnyTime does not require an account just to use the app.
90+
</p>
91+
</article>
92+
</div>
93+
</section>
94+
95+
<section class="card span-8">
96+
<h2>Privacy Summary</h2>
97+
<p>
98+
AnyTime does not include advertising SDKs or third-party analytics. It stores your saved
99+
clocks and display preferences on your device.
100+
</p>
101+
<p>
102+
Optional location access is used only to help identify your nearby timezone in the app.
103+
Optional Calendar access is used only when you ask the app to create a calendar event.
104+
</p>
105+
<p><a href="privacy.html">Read the full Privacy Policy</a></p>
106+
</section>
107+
108+
<section class="card span-4">
109+
<h2>Current App</h2>
110+
<p class="pill"><span class="pill-dot"></span>Rewritten SwiftUI release</p>
111+
<p>
112+
This support site reflects the current AnyTime app and its latest timezone calculator,
113+
search, location, and calendar tools.
114+
</p>
115+
</section>
116+
</main>
117+
118+
<footer class="footer">
119+
<span>AnyTime support site</span>
120+
<span>Maintained for the current App Store release.</span>
121+
</footer>
122+
</div>
123+
</body>
124+
</html>

privacy.html

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>AnyTime Privacy Policy</title>
7+
<meta
8+
name="description"
9+
content="Privacy Policy for AnyTime."
10+
>
11+
<link rel="icon" type="image/png" sizes="1024x1024" href="icon.png">
12+
<link rel="apple-touch-icon" href="icon.png">
13+
<link rel="stylesheet" href="styles.css">
14+
</head>
15+
<body>
16+
<div class="shell">
17+
<header class="nav">
18+
<a class="brand" href="index.html">
19+
<img class="brand-mark" src="icon.png" alt="">
20+
<span>AnyTime</span>
21+
</a>
22+
<nav class="nav-links" aria-label="Primary">
23+
<a class="nav-link" href="index.html">Support</a>
24+
<a class="nav-link current" href="privacy.html">Privacy</a>
25+
</nav>
26+
</header>
27+
28+
<section class="hero">
29+
<p class="eyebrow">Legal</p>
30+
<h1>Privacy Policy</h1>
31+
<p class="lead">Last updated March 4, 2026.</p>
32+
</section>
33+
34+
<main class="grid">
35+
<section class="card span-12 legal">
36+
<p>
37+
AnyTime is a timezone calculator for iPhone, iPad, and Mac. This policy explains what
38+
information the app handles and how that information is used.
39+
</p>
40+
41+
<h2>Information AnyTime May Process</h2>
42+
<ul>
43+
<li>Timezones, cities, and clocks you add or reorder in the app.</li>
44+
<li>Display preferences such as label style and date formatting.</li>
45+
<li>Text you paste into the app when using paste-based time parsing.</li>
46+
<li>Your approximate location only if you grant location permission.</li>
47+
<li>Calendar event details only if you ask the app to create an event and grant Calendar access.</li>
48+
</ul>
49+
50+
<h2>How AnyTime Uses This Information</h2>
51+
<ul>
52+
<li>To show your saved world clocks and calculate time differences.</li>
53+
<li>To interpret pasted date/time text and update the reference clock.</li>
54+
<li>To identify a nearby timezone for search and matching badges when location access is allowed.</li>
55+
<li>To create a Calendar event only when you explicitly request it from a timezone card.</li>
56+
</ul>
57+
58+
<h2>Data Storage</h2>
59+
<p>
60+
AnyTime stores your saved clocks and preferences locally on your device using Apple system
61+
storage APIs. The developer does not require an account and does not operate a backend for
62+
storing your personal timezone data.
63+
</p>
64+
65+
<h2>Location Data</h2>
66+
<p>
67+
If you allow location access, AnyTime uses Core Location and reverse geocoding to determine
68+
a nearby timezone and city. This is used only for app features such as highlighting a matching
69+
timezone or selecting your nearby city in search.
70+
</p>
71+
<p>
72+
The app does not use location access for advertising or background tracking.
73+
</p>
74+
75+
<h2>Calendar Access</h2>
76+
<p>
77+
If you allow Calendar access, AnyTime can create a calendar event using the title and time
78+
you confirm inside the app. Calendar access is used only for the event you request to create.
79+
</p>
80+
81+
<h2>Network Requests</h2>
82+
<p>
83+
AnyTime may make network requests when looking up city matches that are not already covered
84+
by the built-in timezone catalog. If you do not use those search flows, that lookup is not needed.
85+
</p>
86+
87+
<h2>Data Collection and Tracking</h2>
88+
<p>
89+
AnyTime does not include advertising SDKs, third-party analytics SDKs, or third-party tracking code.
90+
</p>
91+
92+
<h2>Data Sharing</h2>
93+
<p>
94+
The developer does not receive your saved clocks, pasted text, location, or calendar contents
95+
through a developer-operated backend service. Information only leaves the device when needed
96+
for the feature you invoke, such as a city lookup request or calendar save through Apple frameworks.
97+
</p>
98+
99+
<h2>Your Choices</h2>
100+
<ul>
101+
<li>You can deny or revoke location permission in system settings.</li>
102+
<li>You can deny or revoke Calendar access in system settings.</li>
103+
<li>You can remove saved clocks or delete the app at any time.</li>
104+
</ul>
105+
106+
<h2>Contact</h2>
107+
<p>
108+
For privacy questions, contact <a href="mailto:hi@hewig.dev">hi@hewig.dev</a>.
109+
</p>
110+
</section>
111+
</main>
112+
113+
<footer class="footer">
114+
<span>AnyTime privacy policy</span>
115+
<span>Applies to the current iPhone, iPad, and Mac app.</span>
116+
</footer>
117+
</div>
118+
</body>
119+
</html>

0 commit comments

Comments
 (0)