Skip to content

Commit 89d904e

Browse files
committed
update offerings visuals
1 parent e74e166 commit 89d904e

File tree

4 files changed

+39
-24
lines changed

4 files changed

+39
-24
lines changed

assets/scss/pages/_home.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
.page-home {
22
}
33

4+
.offerings-heading {
5+
text-align: center;
6+
margin-bottom: clamp(2rem, 6vw, 3.75rem);
7+
font-size: clamp(1.5rem, 5vw, 2rem);
8+
position: relative;
9+
10+
&:after {
11+
content: '';
12+
height: 3px;
13+
width: 50px;
14+
background: $primary;
15+
position: absolute;
16+
bottom: -15px;
17+
left: 50%;
18+
transform: translateX(-50%);
19+
}
20+
}
21+
422
.testimonials {
523
text-align: center;
624
margin: 16px;

data/features.json

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,20 @@
11
[
22
{
3-
"title": "AI Engineering",
4-
"description": "AI augmentation for existing products and development of AI-native solutions",
5-
"image": "images/features/ai-engineering.svg"
6-
},
7-
{
8-
"title": "Infrastructure Platform Engineering",
9-
"description": "Build incremental internal platforms that align with your product teams",
3+
"title": "Platform Engineering",
4+
"tagline": "Build scalable internal platforms that empower your product teams",
5+
"short_description": "Design and implement developer platforms that reduce complexity, accelerate delivery, and enable your teams to ship features independently.",
106
"image": "images/features/infrastructure-platform.svg"
117
},
128
{
13-
"title": "Product Engineering",
14-
"description": "Build scalable, reliable and extensible products",
15-
"image": "images/features/product-engineering.svg"
16-
},
17-
{
18-
"title": "SRE Enablement",
19-
"description": "Improve the reliability of your product by enabling SRE practices",
9+
"title": "Reliability Engineering",
10+
"tagline": "Build confidence in your systems with proactive reliability practices",
11+
"short_description": "Strengthen system reliability through SRE best practices, incident management, and resilience engineering, so your team can innovate without fear of breaking production.",
2012
"image": "images/features/sre-reliability.svg"
2113
},
2214
{
23-
"title": "Modernize with Re-architecture",
24-
"description": "Re-architect your existing products to be more extensible and maintainable. ",
25-
"image": "images/features/rearchitecture.svg"
26-
},
27-
{
28-
"title": "DevOps Consulting",
29-
"description": "Improve collaboration within teams by adoption DevOps culture",
30-
"image": "images/features/devops-icon.svg"
15+
"title": "Platform & Reliability Enablement",
16+
"tagline": "Embed platform and reliability best practices into your organization",
17+
"short_description": "Expert guidance and hands-on support to establish platform engineering and SRE practices that fit your team's culture and technical landscape.",
18+
"image": "images/features/sre-reliability.svg"
3119
}
3220
]

data/testimonials.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@
2828
"quote": "Collaborating with Infraspec was key to adopting practices suited to our growth. They helped drive important projects to closure with transparency. They crucially improved our tooling documentation, reducing key person risks. With infrastructure as code, they helped improve our infrastructure reliability and maintainability while also upskilling the team in infrastructure and DevOps practices. Additionally, they also helped enhance the reliability of our observability tools, reduce infrastructure costs and introduce continuous delivery for containerised workload."
2929
}
3030
]
31-

layouts/index.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
{{if gt (len $services) 0}}
2424
<div class="strip">
2525
<div class="container pt-6 pb-6 pb-md-10">
26+
<div class="row justify-content-center mb-4">
27+
<div class="col-12 text-center">
28+
<h2>Our Services</h2>
29+
</div>
30+
</div>
2631
<div class="row justify-content-start">
2732
{{ range first 6 (sort $services ".Params.weight") }}
2833
<div class="col-12 col-md-4 mb-1">
@@ -44,6 +49,11 @@
4449
{{if .Site.Data.features}}
4550
<div class="strip strip-grey">
4651
<div class="container pt-6 pb-6 pt-md-10 pb-md-10">
52+
<div class="row justify-content-center">
53+
<div class="col-12 text-center">
54+
<h2 class="offerings-heading">Our Offerings</h2>
55+
</div>
56+
</div>
4757
<div class="row justify-content-center">
4858
{{ range .Site.Data.features }}
4959
<div class="col-12 col-md-6 col-lg-4 mb-2">
@@ -53,7 +63,7 @@
5363
{{ end }}
5464
<h2 class="feature-title">{{ .title }}</h2>
5565
<div class="feature-content">
56-
<p>{{ .description }}</p>
66+
<p>{{ .tagline }}</p>
5767
</div>
5868
</div>
5969
</div>

0 commit comments

Comments
 (0)