-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsponsor.html
More file actions
307 lines (267 loc) · 8.2 KB
/
sponsor.html
File metadata and controls
307 lines (267 loc) · 8.2 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sponsor — Plainify</title>
<meta name="description" content="Sponsor Plainify and get your logo on every tool page, seen by thousands of users each month.">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔧</text></svg>">
<!-- Analytics: replace UMAMI_WEBSITE_ID after creating account at umami.is -->
<script defer src="https://cloud.umami.is/script.js" data-website-id="UMAMI_WEBSITE_ID"></script>
<style>
.sponsor-page {
max-width: 620px;
margin: 0 auto;
padding: 2rem 1.5rem 4rem;
}
.sponsor-page h1 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.4rem;
}
.sponsor-page .subtitle {
color: var(--muted);
font-size: 0.95rem;
margin-bottom: 2.5rem;
}
.stat-row {
display: flex;
gap: 1.2rem;
margin-bottom: 2.5rem;
flex-wrap: wrap;
}
.stat-box {
flex: 1;
min-width: 140px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.2rem 1.4rem;
}
.stat-box .number {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent-2);
margin-bottom: 0.2rem;
}
.stat-box .label {
font-size: 0.8rem;
color: var(--muted);
}
.section {
margin-bottom: 2rem;
}
.section h2 {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent-2);
margin-bottom: 0.8rem;
}
.section p {
color: var(--muted);
font-size: 0.9rem;
line-height: 1.7;
margin-bottom: 0.6rem;
}
.section ul {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.section ul li {
font-size: 0.9rem;
color: var(--muted);
padding-left: 1.2rem;
position: relative;
}
.section ul li::before {
content: '—';
position: absolute;
left: 0;
color: var(--accent);
}
.price-block {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.2rem 1.4rem;
margin-bottom: 1.2rem;
display: flex;
align-items: center;
gap: 1rem;
}
.price-block.featured {
border-color: var(--accent);
}
.price-block .price {
font-size: 1.3rem;
font-weight: 700;
white-space: nowrap;
}
.price-block .price-tier {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent-2);
margin-bottom: 0.25rem;
}
.price-block.featured .price-tier {
color: var(--accent);
}
.price-block .price-note {
font-size: 0.85rem;
color: var(--muted);
line-height: 1.5;
}
.price-blocks-wrap {
margin-bottom: 2.5rem;
}
.divider {
border: none;
border-top: 1px solid var(--border);
margin: 2rem 0;
}
/* Form */
.contact-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.form-group label {
font-size: 0.8rem;
color: var(--muted);
font-weight: 500;
}
.form-group input,
.form-group textarea {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--text);
font-family: var(--font);
font-size: 0.9rem;
padding: 0.7rem 0.9rem;
outline: none;
transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--muted);
}
.form-group textarea {
min-height: 120px;
resize: vertical;
}
@media (max-width: 500px) {
.form-row { grid-template-columns: 1fr; }
.stat-row { flex-direction: column; }
}
</style>
</head>
<body>
<header>
<div class="logo">🔧 Plainify</div>
<p class="tagline">Complicated things, made simple.</p>
</header>
<div class="sponsor-page">
<a href="/" class="back-link">← Back to tools</a>
<h1>Sponsor Plainify</h1>
<p class="subtitle">One slot. Every page. Relevant audience.</p>
<p style="font-size:0.92rem;color:var(--muted);line-height:1.7;margin-bottom:2.5rem;">Plainify gets 3,000–5,000 monthly visitors — non-technical users actively solving problems with bills, errors, leases, and quotes. High intent. Zero fluff.</p>
<div class="stat-row">
<div class="stat-box">
<div class="number">3,000+</div>
<div class="label">monthly users (growing)</div>
</div>
<div class="stat-box">
<div class="number">10+</div>
<div class="label">tools and counting</div>
</div>
<div class="stat-box">
<div class="number">1</div>
<div class="label">sponsor slot available</div>
</div>
</div>
<div class="section">
<h2>What you get</h2>
<ul>
<li>Your logo and link displayed on every tool page — header or footer area</li>
<li>One dedicated sponsor slot (no rotation, no competition)</li>
<li>A mention in any social posts we publish that week</li>
<li>Direct email contact if anything needs updating</li>
</ul>
</div>
<div class="section">
<h2>The audience</h2>
<p>People who use these tools are trying to get something done — reading a confusing email, formatting a document, figuring out a piece of software. Practical, task-driven users. No fluff.</p>
</div>
<div class="price-blocks-wrap">
<div class="price-block">
<div>
<div class="price-tier">Standard</div>
<div class="price">$149/mo</div>
</div>
<div class="price-note">Your brand + link in the footer of one tool page, mentioned in the tool's subtitle ("Powered by [Sponsor]"). Monthly, cancel anytime.</div>
</div>
<div class="price-block featured">
<div>
<div class="price-tier">Featured</div>
<div class="price">$299/mo</div>
</div>
<div class="price-note">Your brand + link on the homepage + one tool page, "Sponsored by [Sponsor]" badge on the tool card. Maximum visibility. Monthly, cancel anytime.</div>
</div>
</div>
<hr class="divider">
<div class="section">
<h2>Get in touch</h2>
<p>Send a message and we'll reply within 24 hours.</p>
</div>
<form class="contact-form" action="mailto:milkman.rojas@gmail.com" method="get" enctype="text/plain">
<div class="form-row">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" id="company" name="company" placeholder="Company or site">
</div>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="body" placeholder="Tell us about your product and what you're hoping to reach..."></textarea>
</div>
<input type="hidden" name="subject" value="Sponsorship inquiry — Plainify">
<button type="submit" class="run-btn">Send inquiry</button>
</form>
</div>
<footer>
<p>No signup. No tracking. No bloat. Just tools that work.</p>
<p>Built by <a href="https://redkingsdesigns.netlify.app" target="_blank">RedKingsDesigns</a></p>
</footer>
</body>
</html>