Skip to content

Commit a4d5efa

Browse files
committed
roadmap link
1 parent 77c89ca commit a4d5efa

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

src/components/HeaderSection.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import HomeSection from "./home/HomeSection.astro";
33
44
interface Props {
55
title: string;
6-
description: string;
6+
description?: string;
77
variant?: "white" | "gray";
88
}
99
@@ -13,7 +13,9 @@ const { title, description, variant = "white" } = Astro.props;
1313
<HomeSection variant={variant} contentId="header-section">
1414
<h1>{title}</h1>
1515
<p>
16-
{description}
16+
<slot name="description">
17+
{description}
18+
</slot>
1719
</p>
1820
</HomeSection>
1921

src/pages/index.astro

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,6 @@ const tags = [
337337
<TestimonialsGrid data={testimonialsData} />
338338
</HomeSection>
339339

340-
<!-- <Roadmap variant="white" /> -->
341-
342340
<CTASection
343341
title="Try Defguard Today – Secure Access Without the Complexity"
344342
description="Let your team experience the difference between a modern VPN and a legacy workaround."
@@ -351,6 +349,16 @@ const tags = [
351349
/>
352350

353351

352+
<HeaderSection
353+
title="Roadmap of what's to come"
354+
variant="gray"
355+
>
356+
<span slot="description">
357+
We are fully transparent also with our roadmap and feature management – here is a
358+
<a href="https://github.com/orgs/DefGuard/projects/5/views/1" target="_blank" rel="noopener">detailed roadmap on github</a>
359+
</span>
360+
</HeaderSection>
361+
<!-- <Roadmap variant="gray" /> -->
354362

355363
</main>
356364
</ProductLayout>

0 commit comments

Comments
 (0)