Skip to content

Commit b51383b

Browse files
committed
expand service cards with detailed bullet points and adjust spacing on homepage
1 parent 2923d84 commit b51383b

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

apps/frontendsupport/src/pages/Home/Home.css.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,15 @@ export const serviceCardText = style({
8484
color: '#A9ADC1',
8585
});
8686

87+
export const serviceCardList = style({
88+
fontSize: '1.125rem',
89+
lineHeight: 1.8,
90+
color: '#A9ADC1',
91+
listStyle: 'none',
92+
padding: 0,
93+
margin: 0,
94+
});
95+
8796
export const ctaSection = style({
8897
background: '#0E151D',
8998
color: '#fff',

apps/frontendsupport/src/pages/Home/Home.tsx

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function Home(): JSX.Element {
1919
textAlign="center"
2020
marginY="xxxlarge"
2121
>
22-
<Box marginBottom="xxxlarge">
22+
<Box>
2323
<Heading level="1" weight="regular">
2424
I make slow sites fast
2525
</Heading>
@@ -28,7 +28,7 @@ export function Home(): JSX.Element {
2828
I find what&apos;s slowing you down and fix it. You get faster pages, fewer bounces, and more sales.
2929
</Text>
3030
</Box>
31-
<Box marginBottom="xlarge">
31+
<Box marginBottom="xxxlarge">
3232
<Heading level="2">If your site isn&apos;t faster, you don&apos;t pay.</Heading>
3333
</Box>
3434
<ContactButtons justify="center" />
@@ -42,15 +42,26 @@ export function Home(): JSX.Element {
4242
<div className={styles.servicesGrid}>
4343
<div className={styles.serviceCard}>
4444
<h3 className={styles.serviceCardTitle}>Find the problem</h3>
45-
<p className={styles.serviceCardText}>I figure out what&apos;s slowing your site down</p>
45+
<ul className={styles.serviceCardList}>
46+
<li>Identify bloat</li>
47+
<li>Find the worst images</li>
48+
<li>Identify layout shift</li>
49+
<li>Find slow third-party scripts</li>
50+
</ul>
4651
</div>
4752
<div className={styles.serviceCard}>
4853
<h3 className={styles.serviceCardTitle}>Fix it</h3>
49-
<p className={styles.serviceCardText}>I make the changes so it loads faster</p>
54+
<ul className={styles.serviceCardList}>
55+
<li>Prioritize what matters most</li>
56+
<li>Hit Google&apos;s speed targets</li>
57+
</ul>
5058
</div>
5159
<div className={styles.serviceCard}>
52-
<h3 className={styles.serviceCardTitle}>Show the results</h3>
53-
<p className={styles.serviceCardText}>You see the before and after</p>
60+
<h3 className={styles.serviceCardTitle}>The proof</h3>
61+
<ul className={styles.serviceCardList}>
62+
<li>Before and after metrics</li>
63+
<li>If it&apos;s not faster, you don&apos;t pay</li>
64+
</ul>
5465
</div>
5566
</div>
5667
</div>

0 commit comments

Comments
 (0)