Skip to content

Commit f75832d

Browse files
authored
fix html (#12)
1 parent 9ae8a0a commit f75832d

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

src/components/Brand/Brand.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ export const Brand = () => {
3030
/>
3131
<Typography
3232
variant="h6"
33-
sx={{ display: 'flex', textDecoration: 'none', color: 'inherit', fontWeight: 700 }}
33+
sx={{
34+
display: { xs: 'none', sm: 'flex' },
35+
textDecoration: 'none',
36+
color: 'inherit',
37+
fontWeight: 700,
38+
}}
3439
>
3540
dfsync
3641
</Typography>

src/components/Hero/Hero.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const Hero = () => {
2525
fontSize: { xs: '2.5rem', md: '4.5rem' },
2626
lineHeight: 1.05,
2727
maxWidth: 900,
28+
textWrap: 'wrap',
2829
}}
2930
>
3031
Reliable toolkit for service-to-service communication
@@ -33,7 +34,13 @@ export const Hero = () => {
3334
label="Built for microservices, internal APIs, integrations, and background workers"
3435
color="primary"
3536
variant="outlined"
36-
sx={{ mt: 1, mb: 1 }}
37+
sx={{ mt: 1, mb: 1, display: { xs: 'none', sm: 'inline-flex' } }}
38+
/>
39+
<Chip
40+
label="Built for modern backend systems"
41+
color="primary"
42+
variant="outlined"
43+
sx={{ mt: 1, mb: 1, display: { xs: 'inline-flex', sm: 'none' } }}
3744
/>
3845

3946
<ProjectBadges />

0 commit comments

Comments
 (0)