Skip to content

Commit 1a7f5c2

Browse files
author
Michał Gryczka
committed
renamed success stories and testimonials
1 parent c2baf0d commit 1a7f5c2

File tree

4 files changed

+33
-38
lines changed

4 files changed

+33
-38
lines changed

src/components/TextDivider.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ import ContentLimiter from "./ContentLimiter.astro";
33
interface Props {
44
text: string;
55
paddingTop?: string;
6+
as?: "span" | "h2" | "h3";
67
}
7-
const { text, paddingTop = '3rem' } = Astro.props;
8+
const { text, paddingTop = "3rem", as = "span" } = Astro.props;
9+
const DividerTag = as;
810
---
911
<ContentLimiter>
1012
<div class="text-divider" style={`padding-top: ${paddingTop};`}>
11-
<span class="divider-text">{text}</span>
13+
<DividerTag class="divider-text">{text}</DividerTag>
1214
</div>
1315
</ContentLimiter>
1416

src/data/nav.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,8 @@
4040
]
4141
},
4242
{
43-
"display": "Customers",
44-
"url": null,
45-
"children": [
46-
{
47-
"display": "Prusa Research: Scaling Secure Access",
48-
"url": "/blog/prusa-vpn-scaling-with-defguard"
49-
},
50-
{
51-
"display": "Acquinox: Private Cloud & Data Sovereignty",
52-
"url": "/blog/self-hosted-vpn-private-cloud-acquinox-defguard"
53-
},
54-
{
55-
"display": "Eskemm Numérique: Multi-Tenant Remote Access",
56-
"url": "/blog/eskemm-numerique-multi-tenant-remote-access"
57-
}
58-
]
43+
"display": "Success Stories",
44+
"url": "/#success-stories"
5945
},
6046
{
6147
"display": "Pricing",

src/pages/blog/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ const hasCaseStudy =
379379
line-height: 1.5;
380380
color: var(--text-body-primary);
381381
margin: 0 0 1rem;
382-
text-align: justify;
382+
text-align: left;
383383
}
384384

385385
.company-segment {

src/pages/index.astro

Lines changed: 26 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import api from "/public/images/data/api.png";
1818
import Image from "astro/components/Image.astro";
1919
import YouTubeVideo from "../components/video/YouTubeVideo.astro";
2020
import CTASection from "../components/CTASection.astro";
21-
import TextDivider from "../components/TextDivider.astro";
2221
import TrustedBy from "./_home/components/TrustedBy.astro";
2322
import HeaderSection from "../components/HeaderSection.astro";
2423
import ImageURL from "../components/image/ImageURL.astro";
@@ -455,38 +454,46 @@ const tags = [
455454
456455
457456
-->
458-
<HeaderSection
459-
title="Real-world use cases"
460-
description="Defguard secure architecture approach and user friendly interface makes it a unique solution in the VPN management space."
461-
variant="white"
462-
/>
463-
<TextDivider text="Case Studies" paddingTop="0" />
464-
<CaseCapsules
465-
cases={[
457+
<section id="success-stories">
458+
<HeaderSection
459+
title="Success Stories"
460+
description="Each organisation is unique. See how we've enabled secure remote access for a wide range of use cases."
461+
variant="white"
462+
/>
463+
<CaseCapsules
464+
cases={[
466465
{
467466
title: "How a Swiss Private Equity fund built a private cloud with Defguard",
468467
link: "/blog/self-hosted-vpn-private-cloud-acquinox-defguard",
469468
image: "/images/blog/swiss-dg.png",
470469
description: "Learn how Acquinox built a secure, compliant private cloud infrastructure using Defguard's enterprise VPN solution."
471470
},
472471
{
473-
title: "Replace Fortigate VPN and FortiClient with a lightweight, auditable modern VPN solution",
474-
link: "/defguard-vs-fortinet",
475-
image: "/images/landing/defguard.png",
476-
description: "Discover how Defguard provides enterprise-grade security with a fraction of the complexity of traditional VPN appliances."
472+
title: "How Eskemm Numérique Built Secure Multi-Tenant Remote Access with Defguard",
473+
link: "/blog/eskemm-numerique-multi-tenant-remote-access",
474+
image: "/images/blog/eskemm_case_study.png",
475+
description: "See how Eskemm Numérique modernized multi-tenant remote access for universities and research institutions while meeting strict HDS and ISO 27001 requirements."
477476
},
478477
{
479478
title: "How Prusa 3D Adopted Defguard for Secure, Scalable VPN Access",
480479
link: "/blog/prusa-vpn-scaling-with-defguard",
481480
image: "/images/blog/prusa.png",
482481
description: "Prusa Research adopted Defguard to build a scalable, self-hosted VPN with WireGuard-level MFA, securing access for 490+ users."
483482
}
484-
]}
485-
/>
486-
<TextDivider text="Testimonials" />
487-
<HomeSection id="testimonials" variant="white">
488-
<TestimonialsGrid data={testimonialsData} />
489-
</HomeSection>
483+
]}
484+
/>
485+
</section>
486+
<section id="testimonials">
487+
<HeaderSection
488+
title="Approved by Security Experts"
489+
description="What CISO, IT Directors, and Cloud/DevOps Engineers say about Defguard."
490+
variant="white"
491+
/>
492+
<HomeSection variant="white">
493+
<TestimonialsGrid data={testimonialsData} />
494+
</HomeSection>
495+
</section>
496+
.
490497

491498
<CTASection
492499
title="Try Defguard Today – Secure Access Without the Complexity"

0 commit comments

Comments
 (0)