Skip to content

Commit 22cf860

Browse files
author
Justin M
committed
sponsors tier card
1 parent 998a33b commit 22cf860

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

sponsor/index.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
.tier-grid {
6+
display: flex;
7+
flex-wrap: wrap;
8+
justify-content: space-around;
9+
padding: 10px;
10+
}
11+
.tier-card {
12+
width: 200px;
13+
border: 1px solid #ddd;
14+
border-radius: 5px;
15+
margin: 10px;
16+
padding: 10px;
17+
text-align: center;
18+
}
19+
.tier-title {
20+
font-size: 1.5em;
21+
color: #333;
22+
}
23+
.tier-price {
24+
font-size: 1.2em;
25+
color: #333;
26+
}
27+
.tier-description {
28+
color: #666;
29+
}
30+
.tier-annotation {
31+
color: #999;
32+
}
33+
.tier-button {
34+
background-color: #009688;
35+
color: white;
36+
padding: 10px 20px;
37+
text-align: center;
38+
text-decoration: none;
39+
display: inline-block;
40+
font-size: 16px;
41+
margin: 10px 2px;
42+
cursor: pointer;
43+
}
44+
.tier-button:hover {
45+
background-color: #007d71;
46+
}
47+
48+
</style>
49+
</head>
50+
<body>
51+
<div class="tier-grid">
52+
<div class="tier-card">
53+
<h3 class="tier-title">Patron</h3>
54+
<div class="tier-price">$1 / month</div>
55+
<p class="tier-description">Your support matters! In appreciation, we offer to mention your name or business name (with optional hyperlink) in a new sponsors popup on <a href="http://json-diff.com" target="_blank">json-diff.com</a>. We thank you for your contribution to our work!</p>
56+
<a href="/join/json_diff/checkout?rid=9821250" class="tier-button">Join</a>
57+
<div class="tier-annotation">Name shown under sponsors on json-diff.com</div>
58+
</div>
59+
<!-- Add more tier-cards here -->
60+
</div>
61+
</body>
62+
</html>

0 commit comments

Comments
 (0)