Skip to content

Commit 2d4ee28

Browse files
committed
full width get enterprise free section
1 parent 442b09a commit 2d4ee28

File tree

1 file changed

+26
-67
lines changed

1 file changed

+26
-67
lines changed

src/pages/pricing.astro

Lines changed: 26 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ import PricingHeaderContent from "../data/pricing/page-header.mdx";
88
import { PricingCards } from "../components/pricing/Pricing";
99
import ContentLimiter from "../components/ContentLimiter.astro";
1010
import FlexibleSection from "../components/FlexibleSection.astro";
11-
import ProductSection from "../layouts/ProductSection.astro";
12-
import AstroButton from "../components/AstroButton.astro";
13-
import CTASection from "../components/CTASection.astro";
1411
1512
const pricingCollection = await getCollection("pricing");
1613
// sort and map to prop type
@@ -78,10 +75,15 @@ const tags = [
7875
<PricingHeaderContent />
7976
</FlexibleSection>
8077
<PricingCards client:load data={pricingData} />
81-
<div id="sla-support">
78+
</header>
79+
</ContentLimiter>
80+
81+
<div class="sla-support-wrapper">
82+
<div id="sla-support">
83+
<ContentLimiter contentId="sla-support-content" maxWidth={1100}>
8284
<div id="sla-card">
8385
<div class="left">
84-
<p>Get Enterprise<br /><span>Evaluation License</span></p>
86+
<p>Get 30-days Enterprise <span>License Evaluation Key</span></p>
8587
<svg
8688
xmlns="http://www.w3.org/2000/svg"
8789
width="705"
@@ -111,75 +113,23 @@ const tags = [
111113
stroke-linecap="round"></path>
112114
</svg>
113115
</div>
114-
<div class="right">
115-
<h3>Custom Solution</h3>
116-
<p>
117-
For <strong>evaluations</strong> or proof-of-concept testing, we’re happy to
118-
provide a trial license.
119-
</p>
120-
<p>
121-
If you require tailored support, <strong>defguard Enterprise SLA</strong> offers
122-
enhanced service with benefits customized to your organization’s specific needs.
123-
</p>
124-
125-
</div>
126116
</div>
127-
</div>
128-
</header>
129-
130-
<ProductSection padding="none">
131-
<FlexibleSection title="Explore Custom Solutions for Your Organization" id="press-contact" variant="white" theme="light">
132-
<div slot="left">
133-
<ul>
134-
<li>
135-
We offer <strong>trial licenses</strong> for evaluation or proof-of-concept purposes—so you can explore DefGuard’s capabilities risk-free.
136-
</li>
137-
<li>
138-
Need something more tailored? Our <strong>Enterprise SLA</strong> includes enhanced support and services customized to your specific requirements.
139-
</li>
140-
</ul>
141-
<p>
142-
Please <strong>fill out the form</strong> to get started—we’ll be in touch shortly.
143-
</p>
144-
</div>
145-
<div slot="right">
117+
<div class="product-features">
146118
<BookDemoForm client:load />
147119
</div>
148-
</FlexibleSection>
149-
</ProductSection>
150-
<CTASection
151-
title="Need Enterprise Features for Free?"
152-
description="If you're a non-profit organization or an open-source project, we’d love to support you. Click the button to email us with a short explanation of your mission and why you're requesting free access."
153-
buttonText="Contact Sales"
154-
buttonLink="mailto:sales@defguard.net"
155-
id="cta-download"
156-
variant="white"
157-
/>
158-
</ContentLimiter>
120+
</ContentLimiter>
121+
</div>
122+
</div>
159123

160124
<style lang="scss" is:global>
161-
.cta-content {
162-
padding-top: 1rem;
163-
border-top: 1px solid var(--text-body-primary);
164-
}
165-
166-
#cta-download {
167-
padding-bottom: 0;
168-
}
169-
170-
.flexible-section {
171-
padding:0 !important;
172-
}
173125
#pricing-container {
174126
padding-bottom: 40px;
175127
}
176128

177129
#pricing-tiers {
178-
// padding-top: calc(100px - var(--nav-height));
179130
padding-bottom: calc(100px - var(--nav-height));
180131

181132
@include break-up(md) {
182-
// padding-top: calc(200px - var(--nav-height));
183133
padding-bottom: calc(200px - var(--nav-height));
184134
}
185135

@@ -204,7 +154,7 @@ const tags = [
204154
flex-flow: column;
205155
justify-content: flex-start;
206156
width: 100%;
207-
padding-bottom: 0;
157+
padding-bottom: 50px;
208158
gap: 20px;
209159

210160
h1 {
@@ -278,6 +228,7 @@ const tags = [
278228
}
279229

280230
.product-features {
231+
padding-top: 2rem;
281232
.form-description {
282233
width: 100%;
283234
display: flex;
@@ -301,18 +252,26 @@ const tags = [
301252
}
302253
}
303254

255+
.sla-support-wrapper {
256+
width: 100%;
257+
background-color: var(--background-secondary, #f5f5f5);
258+
padding: 60px 0;
259+
}
260+
304261
#sla-support {
305-
padding-bottom: 60px;
262+
width: 100%;
263+
max-width: 1100px;
264+
margin: 0 auto;
265+
padding: 0 20px;
266+
box-sizing: border-box;
306267

307268
#sla-card {
308269
display: grid;
309-
background-color: var(--surface-nav-bg);
310-
box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
311270
grid-template-columns: 1fr;
312271
grid-template-rows: 1fr auto;
313272

314273
@include break-up(lg) {
315-
grid-template-columns: 1fr 390px;
274+
grid-template-columns: 1fr;
316275
grid-template-rows: 1fr;
317276
}
318277

@@ -412,4 +371,4 @@ const tags = [
412371
}
413372
</style>
414373
</main>
415-
</BaseLayout>
374+
</BaseLayout>

0 commit comments

Comments
 (0)