Skip to content

Commit b6c53ea

Browse files
authored
Add files via upload
1 parent 60e735b commit b6c53ea

8 files changed

Lines changed: 1465 additions & 3 deletions

File tree

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
# website
1+
# nextcortex.github.io
2+
3+
Landing page for [Antigravity Monitor](https://github.com/nextcortex/antigravity-monitor) — a 100% local quota monitor extension for Antigravity IDE.
4+
5+
🌐 **Live**: [nextcortex.github.io](https://nextcortex.github.io)
6+
7+
## Stack
8+
9+
- Single-file HTML (no build step)
10+
- Hosted on GitHub Pages
11+
- Inter font via Google Fonts
12+
13+
## License
14+
15+
MIT © NextCortex

assets/icon.png

9.17 KB
Loading

assets/icon.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/screenshot.png

42.6 KB
Loading

donate.html

Lines changed: 111 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,111 @@
1-
test
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Donate — Antigravity Monitor</title>
8+
<meta name="description" content="Support the Antigravity Monitor project.">
9+
<meta name="theme-color" content="#0a0e17">
10+
<link rel="canonical" href="https://nextcortex.github.io/donate.html">
11+
<link rel="icon" type="image/png" href="assets/icon.png">
12+
<link rel="apple-touch-icon" href="assets/icon.png">
13+
<link rel="preconnect" href="https://fonts.googleapis.com">
14+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
15+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
16+
<style>
17+
*,
18+
*::before,
19+
*::after {
20+
box-sizing: border-box;
21+
margin: 0;
22+
padding: 0;
23+
}
24+
25+
body {
26+
font-family: 'Inter', sans-serif;
27+
background: #0a0e17;
28+
color: #e2e8f0;
29+
min-height: 100vh;
30+
display: flex;
31+
flex-direction: column;
32+
align-items: center;
33+
justify-content: center;
34+
text-align: center;
35+
padding: 32px;
36+
}
37+
38+
.card {
39+
max-width: 520px;
40+
background: rgba(255, 255, 255, 0.03);
41+
border: 1px solid rgba(255, 255, 255, 0.08);
42+
border-radius: 20px;
43+
padding: 56px 40px;
44+
backdrop-filter: blur(12px);
45+
}
46+
47+
.icon {
48+
width: 120px;
49+
height: 120px;
50+
margin-bottom: 32px;
51+
opacity: 0.9;
52+
}
53+
54+
h1 {
55+
font-size: 1.8rem;
56+
font-weight: 700;
57+
margin-bottom: 16px;
58+
}
59+
60+
.gradient-text {
61+
background: linear-gradient(135deg, #4f8fff, #8b5cf6);
62+
-webkit-background-clip: text;
63+
background-clip: text;
64+
-webkit-text-fill-color: transparent;
65+
}
66+
67+
p {
68+
color: #94a3b8;
69+
line-height: 1.7;
70+
margin-bottom: 24px;
71+
font-size: 1.05rem;
72+
}
73+
74+
.btn {
75+
display: inline-flex;
76+
align-items: center;
77+
gap: 8px;
78+
padding: 12px 28px;
79+
border-radius: 12px;
80+
background: rgba(255, 255, 255, 0.06);
81+
border: 1px solid rgba(255, 255, 255, 0.12);
82+
color: #e2e8f0;
83+
text-decoration: none;
84+
font-weight: 500;
85+
font-size: 0.95rem;
86+
transition: all 0.3s;
87+
}
88+
89+
.btn:hover {
90+
background: rgba(255, 255, 255, 0.12);
91+
transform: translateY(-1px);
92+
}
93+
94+
.heart {
95+
font-size: 2.5rem;
96+
margin-top: 32px;
97+
}
98+
</style>
99+
</head>
100+
101+
<body>
102+
<div class="card">
103+
<h1><span class="gradient-text">Thank you</span> for thinking of us</h1>
104+
<p>We're not accepting donations at the moment. Antigravity Monitor is free, open source, and built with love.
105+
</p>
106+
<p>The best way to support us is by starring the project on GitHub and sharing it with others.</p>
107+
<a href="index.html" class="btn">← Back to home</a>
108+
</div>
109+
</body>
110+
111+
</html>

0 commit comments

Comments
 (0)