Skip to content

Commit 51cfd2b

Browse files
committed
Update landing page design and styling
- Add 'Trusted and Used By' section with LFX and FINOS partner logos - Swap background colors: Welcome section (white) and Features section (teal) - Add teal gradient to cover block hero section - Update hero button icon from book to rocket - Update welcome text to 'Built for infrastructure engineers' - Reduce H1 title bottom padding in cover block - Improve partners section layout with tighter spacing - Add partner logo hover effects
1 parent ca18bfd commit 51cfd2b

File tree

4 files changed

+93
-5
lines changed

4 files changed

+93
-5
lines changed

assets/scss/_styles_project.scss

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,36 @@ a {
4747
.bg-light {
4848
background-color: #DDDEE0 !important;
4949
}
50+
51+
// Partner logo hover effects
52+
.td-box--white a img {
53+
transition: opacity 0.2s ease;
54+
55+
&:hover {
56+
opacity: 0.8;
57+
}
58+
}
59+
60+
// Teal gradient for cover block (darker at top, lighter at bottom)
61+
.td-cover-block.-bg-primary {
62+
background: linear-gradient(180deg,
63+
darken(#24CCCC, 15%) 0%,
64+
#24CCCC 50%,
65+
lighten(#24CCCC, 5%) 100%
66+
) !important;
67+
}
68+
69+
// Reduce bottom padding on H1 title in cover block
70+
.td-cover-block h1 {
71+
padding-bottom: 0.5rem !important;
72+
}
73+
74+
// Reduce spacing in partners row
75+
.partners-row {
76+
gap: 1rem;
77+
78+
.col-auto {
79+
padding-left: 0.5rem;
80+
padding-right: 0.5rem;
81+
}
82+
}

content/en/_index.html

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,37 @@
55

66
{{< blocks/cover title="Privateer" image_anchor="top" height="min" color="primary" >}}
77
<div class="mx-auto">
8-
<p class="lead mt-5">Streamline Your Security and Compliance Validation</p>
8+
<p class="lead">Streamline Your Security and Compliance Validation</p>
99
<img src="/images/patches-small.png" alt="Patches the Privateer Pointer" class="mb-4" style="max-width: 200px;">
1010
<a class="btn btn-lg btn-secondary mr-3 mb-4" href="/docs/">
11-
Get Started <i class="fas fa-book ml-2"></i>
11+
Get Started <i class="fas fa-rocket ml-2"></i>
1212
</a>
1313
</div>
1414
{{< /blocks/cover >}}
1515

16-
{{% blocks/lead color="primary" %}}
17-
## Welcome to Privateer
16+
{{< blocks/section color="white" >}}
17+
<div class="col-12">
18+
<div class="row justify-content-center align-items-center partners-row">
19+
<div class="col-auto text-center">
20+
<a href="https://insights.linuxfoundation.org/" target="_blank" rel="noopener noreferrer" class="d-inline-block">
21+
<img src="/images/LFX.svg" alt="LFX Insights" class="img-fluid" style="max-height: 60px;">
22+
</a>
23+
</div>
24+
<div class="col-auto text-center">
25+
<p class="mb-0 mx-3">Trusted and Used By</p>
26+
</div>
27+
<div class="col-auto text-center">
28+
<a href="https://ccc.finos.org/" target="_blank" rel="noopener noreferrer" class="d-inline-block">
29+
<img src="/images/FINOS.png" alt="FINOS CCC" class="img-fluid" style="max-height: 60px;">
30+
</a>
31+
</div>
32+
</div>
33+
</div>
34+
{{< /blocks/section >}}
1835

19-
Privateer is a validation framework that simplifies infrastructure testing and compliance validation. Built with infrastructure engineers in mind, Privateer helps accelerate security and compliance validation of any software asset.
36+
{{% blocks/lead color="primary" %}}
37+
<p>Privateer is a validation framework that simplifies infrastructure testing and compliance validation.</p>
38+
<p>Built for infrastructure engineers, it accelerates security and compliance validation of any software asset.</p>
2039
{{% /blocks/lead %}}
2140

2241
{{< blocks/section color="white" type="features" >}}

static/images/FINOS.png

4.71 KB
Loading

static/images/LFX.svg

Lines changed: 36 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)