Skip to content

Commit 62b7a30

Browse files
committed
pro update
1 parent a6e0f82 commit 62b7a30

File tree

2 files changed

+135
-0
lines changed

2 files changed

+135
-0
lines changed

src/components/Header.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
const PAGES = [
33
{ title: 'Home', href: '/' },
44
{ title: 'FAQ', href: '/faq' },
5+
{ title: 'Pro', href: '/pro' },
56
// { title: 'Page 3', href: '/page3'},
67
]
78

src/pages/pro.astro

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
---
2+
import CellButton from '../components/CellButton.astro';
3+
import Container from '../components/Container.astro';
4+
import Layout from '../layouts/Layout.astro';
5+
---
6+
7+
<Layout>
8+
<div class="content">
9+
<div class="container py-6">
10+
<div class="row">
11+
<div>
12+
<h1 class="title">Eclipse Pro</h1>
13+
<p class="sub-title">
14+
A <span style="--col1:#e6a9ff;--col2:#cb4bff;" class="color-grad">pro version</span> mod menu<br/>
15+
for <span style="--col1:#EEFF00;--col2:#F2FA10;" class="color-grad">Geometry Dash</span><br/>
16+
with even <span style="--col1:#35D377;--col2:#3affb3;" class="color-grad">better features</span><br/>
17+
Only <span style="--col1:#EEFF00;--col2:#F2FA10;" class="color-grad">25$ per month!</span>
18+
</p>
19+
<p>
20+
<CellButton href="#purchase"
21+
text="Buy Now!" icon="/kofi.svg"
22+
gradBegin="#6117BC" gradEnd="#410C82"/>
23+
</p>
24+
</div>
25+
<div>
26+
<img src="/eclipse.png" alt="Eclipse Menu" height="200px" />
27+
</div>
28+
</div>
29+
</div>
30+
31+
<!-- <Container id="about">
32+
About
33+
</Container> -->
34+
35+
<Container id="about" title="Features" titleColor="#AAFFAA">
36+
<p>
37+
Eclipse Pro comes with many features that you all have been asking for!
38+
Including but not limited to:
39+
</p>
40+
<ul>
41+
<li>iOS support</li>
42+
<li>CBF support (For Android and iOS, must have a keyboard or mouse!!!)</li>
43+
<li>AI generated themes</li>
44+
<li>AI generated labels</li>
45+
<li>Innovative Bot Replay</li>
46+
<li>AI level editor</li>
47+
</ul>
48+
49+
</Container>
50+
<Container id="purchase" title="Purchase" titleColor="#6117BC">
51+
<h3>Tutorial</h3>
52+
<iframe width="840" height="472" src="https://www.youtube.com/embed/y6lPRpEwigQ?si=Unfm-kD2dhFaHZE7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
53+
<p>
54+
Click <a href="">here</a> to purchase Eclipse Pro!
55+
</p>
56+
</Container>
57+
</div>
58+
</Layout>
59+
60+
<style>
61+
.container {
62+
max-width: 800px;
63+
margin: 0 auto;
64+
padding-left: 2rem;
65+
padding-right: 2rem;
66+
}
67+
68+
.py-6 {
69+
padding-top: 6rem;
70+
padding-bottom: 6rem;
71+
}
72+
73+
.row {
74+
display: flex;
75+
justify-content: space-between;
76+
align-items: center;
77+
}
78+
79+
@media (max-width: 800px) {
80+
.row {
81+
flex-direction: column-reverse;
82+
}
83+
.container {
84+
padding-left: 1rem;
85+
padding-right: 1rem;
86+
text-align: center;
87+
}
88+
}
89+
90+
.title {
91+
font-size: 4rem;
92+
margin: 0;
93+
}
94+
95+
.sub-title {
96+
font-size: 1.7rem;
97+
margin: 0;
98+
}
99+
100+
@media (max-width: 600px) {
101+
.title {
102+
font-size: 3rem;
103+
}
104+
.sub-title {
105+
font-size: 1.2rem;
106+
}
107+
}
108+
109+
.color-grad {
110+
background: linear-gradient(90deg, var(--col1) 0%, var(--col2) 100%);
111+
-webkit-background-clip: text;
112+
-webkit-text-fill-color: transparent;
113+
}
114+
115+
.image-fit {
116+
width: 100%;
117+
height: auto;
118+
object-fit: contain;
119+
}
120+
121+
kbd {
122+
background: rgba(155, 155, 155, 0.3);
123+
padding: 0.2rem 0.4rem;
124+
border-radius: 0.2rem;
125+
font-size: 0.9rem;
126+
}
127+
128+
hr {
129+
margin-top: 2rem;
130+
margin-bottom: 2rem;
131+
border: 0;
132+
border-top: 1px solid rgba(255, 255, 255, 0.25);
133+
}
134+
</style>

0 commit comments

Comments
 (0)