-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
172 lines (163 loc) · 5.45 KB
/
support.html
File metadata and controls
172 lines (163 loc) · 5.45 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" href="./macOS512.png">
<link rel="shortcut icon" href="./macOS512.png" media="(prefers-color-scheme: light)" />
<link rel="shortcut icon" href="./macOS512.png" media="(prefers-color-scheme: dark)"/>
<link rel="icon" type="image/png" href="./macOS512.png">
<title>Support - pcAI</title>
<style>
:root {
--accent-color: #34C759;
--bg-color: #f5f5f7;
--card-bg: #ffffff;
--text-primary: #1d1d1f;
--text-secondary: #6e6e73;
--border-radius: 12px;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #000000;
--card-bg: #1c1c1e;
--text-primary: #f5f5f7;
--text-secondary: #86868b;
}
}
header {
text-align: center;
margin: 0px;
padding: 0px;
}
.app-icon {
width: 64px;
height: 64px;
margin: 0 auto 5px;
background-image: url('./macOS512.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
filter: drop-shadow(0 8px 12px rgba(0,0,0,0.12));
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 0.1rem;
background-color: #f4f4f7;
}
.container {
background-color: #ffffff;
padding: 0 2.5rem 2.5rem 2.5rem;
border-radius: 16px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.app-header {
text-align: center;
margin-bottom: 0.5rem;
}
h1 {
font-size: 2rem;
color: #000;
margin: 0.1rem;
letter-spacing: -0.5px;
}
.tagline {
color: #666;
font-size: 1.1rem;
font-weight: 400;
}
h2 {
font-size: 1.4rem;
color: #007AFF;
margin-top: 2rem;
border-left: 4px solid #007AFF;
padding-left: 1rem;
}
p {
margin-bottom: 1.2rem;
}
.feature-list {
list-style: none;
padding: 0;
}
.feature-list li {
position: relative;
padding-left: 1.8rem;
margin-bottom: 0.8rem;
}
.feature-list li::before {
content: "✓";
position: absolute;
left: 0;
color: #34C759; /* Apple-style green */
font-weight: bold;
}
.spec-box {
background-color: #f8f8f8;
padding: 1.2rem;
border-radius: 10px;
font-size: 0.95rem;
color: #555;
}
.contact-section {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #eee;
}
.btn-email {
display: inline-block;
background-color: #007AFF;
color: #fff;
padding: 0.8rem 1.5rem;
border-radius: 25px;
text-decoration: none;
font-weight: 500;
margin-top: 1rem;
transition: background-color 0.2s;
}
.btn-email:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<header class="app-header">
<a href="https://apps.apple.com/us/app/id6751140211"><div class="app-icon"></div></a>
<h1><a href="https://apps.apple.com/us/app/id6751140211">Local AI Photo Retouch: pcAI</a></h1>
<div class="tagline">Restore clarity,Redefine style On-Device</div>
</header>
<div class="purpose-box">
<strong>Purpose:</strong> pcAI is a smart image processing tool powered entirely by on-device AI. No registration, no uploads, no internet required. Just tap a few times, and you’re done — AI clarity enhancement, brightness boost, style transfer and export your results. Everything works offline, locally, and privately.
</div>
<h2>Key Features</h2>
<ul>
<li>Unlimited photo loading & replacement</li>
<li>AI clarity enhancement, brightness boost, some style transfer</li>
<li><strong>Privacy by Design:</strong> Everything is processed locally — your images never leave your device unless you choose to share them.</li>
<li>No Ads. No Tracking. No Cloud.</li>
</ul>
<h2>Technical Specifications</h2>
<div class="spec-grid">
<ul>
<li>Requires iOS 16, macOS 12 or later.</li>
<li>Optimized for high performance and resource efficiency.</li>
<li>Works offline with no need for network access, ensuring complete data privacy.</li>
</ul>
</div>
<div class="contact-card">
<h2>Contact & Support</h2>
<p>Have questions or need support? Feel free to reach out:</p>
<div class="contact-links">
<a href="mailto:danjian42@gmail.com">Email Us</a> |
<a href="https://x.com/aceway2024" target="_blank">Follow on X</a>
</div>
</div>
</div>
</body>
</html>