Skip to content

Commit 8198a5d

Browse files
committed
request non-profit license
1 parent 3f4696f commit 8198a5d

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

src/pages/pages/pricing.astro

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.cta-button {
2+
display: inline-block;
3+
text-decoration: none;
4+
background-color: var(--primary);
5+
color: var(--text-primary);
6+
padding: 12px 24px;
7+
border-radius: 4px;
8+
font-family: "Poppins";
9+
font-size: 16px;
10+
font-weight: 500;
11+
border: 1px solid var(--border-separator);
12+
cursor: pointer;
13+
transition: background-color 0.2s ease;
14+
15+
&:hover {
16+
background-color: var(--primary-hover);
17+
}
18+
}

src/pages/pricing.astro

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,15 @@ const tags = [
121121
</div>
122122
</div>
123123

124+
<div class="nonprofit-wrapper">
125+
<div id="nonprofit-section">
126+
<p>Request a license for your non-profit organisation.</p>
127+
<button type="submit" class="btn size-normal" onclick="window.location.href='mailto:sales@defguard.net'">
128+
<span>Contact Sales</span>
129+
</button>
130+
</div>
131+
</div>
132+
124133
<style lang="scss" is:global>
125134
#pricing-container {
126135
padding-bottom: 40px;
@@ -335,6 +344,29 @@ const tags = [
335344
box-sizing: border-box;
336345
}
337346
}
347+
348+
.nonprofit-wrapper {
349+
width: 100%;
350+
background-color: var(--surface-frame-bg);
351+
padding: 120px 0;
352+
}
353+
354+
#nonprofit-section {
355+
width: 100%;
356+
max-width: 1100px;
357+
margin: 0 auto;
358+
text-align: center;
359+
padding: 0 20px;
360+
box-sizing: border-box;
361+
display: flex;
362+
flex-direction: column;
363+
align-items: center;
364+
365+
p {
366+
@include typography(pricebox-section);
367+
margin-bottom: 30px;
368+
}
369+
}
338370
</style>
339371
</main>
340372
</BaseLayout>

0 commit comments

Comments
 (0)