Skip to content

Commit 14ff54a

Browse files
Gowiemclaude
andcommitted
fix: address PR #100 follow-up feedback — typos, layout, and shortcode rename
- Swap "Join Clients Like" heading below the descriptive paragraph so the label sits directly above the client logo carousel (Megan feedback) - Drop leading "and" from step #4 in the audit CTA list for consistent style - Fix "iac-sound-familier" typo → "iac-sound-familiar" in frontmatter + CSS - Rename accordian.html → accordion.html shortcode and update usage Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 634e2fa commit 14ff54a

7 files changed

Lines changed: 16 additions & 18 deletions

File tree

assets/css/custom.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3657,7 +3657,7 @@ font-size: 2.5rem;
36573657
}
36583658
}
36593659

3660-
#iac-sound-familier {
3660+
#iac-sound-familiar {
36613661
color: #fff;
36623662
padding: 10.25rem 0 4.35rem;
36633663
text-align: center;

content/sections/home-join-clients.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ id: join-clients
99
<div class="row justify-content-center text-center">
1010
<div class="col col-12 col-md-10 col-lg-7 col-xl-6">
1111

12-
### Join Clients Like: {.sectionLabel .text-center .text-rhythm}
13-
1412
<p class="font20 text-pine">Our team has architected and implemented cloud platforms for a diverse set of clients ranging from startups to Fortune 20 enterprises.</p>
1513

14+
### Join Clients Like: {.sectionLabel .text-center .text-rhythm}
15+
1616
</div></div>
1717

1818
{{<client-logos>}}

content/sections/home-turn-chaos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Uncover the inefficiencies in your infrastructure with our IaC Audit.
4242
<li>We’ll talk goals</li>
4343
<li>Interview your team</li>
4444
<li>Assess your setup</li>
45-
<li>and provide practical recommendations that will set your team up for success.</li>
45+
<li>Provide practical recommendations that will set your team up for success.</li>
4646
</ol>
4747
</div>
4848
</div>

content/sections/iac-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ faqs:
2828

2929
### Common Questions {.sectionTitle .big .text-pine .text-center}
3030

31-
{{< accordian >}}
31+
{{< accordion >}}

content/sections/iac-sound-familiar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight: 1
77
#image: /img/bg_featured_video.jpg
88
section_categories:
99
- iacaudit
10-
id: iac-sound-familier
10+
id: iac-sound-familiar
1111

1212
cards:
1313
- icon: '<i class="fa-solid fa-square-xmark"></i>'

layouts/shortcodes/accordian.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

layouts/shortcodes/accordion.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<div id="faqsBlock">
2+
{{ range $index, $faq := .Page.Params.faqs }}
3+
<div class="faqBx" id="faq-{{ $index }}">
4+
<h3 class="faqQ">
5+
<a href="javascript:void(0)">{{ $faq.title }}</a>
6+
</h3>
7+
<div class="faqA">{{ $faq.content | markdownify }}</div>
8+
</div>
9+
{{ end }}
10+
</div>

0 commit comments

Comments
 (0)