Skip to content

Commit 51d93bb

Browse files
authored
feat(homepage): use new background (#1073)
* feat(homepage): use new background * feat(homepage): update font color * feat(homepage): add gradient to button
1 parent 016ca8e commit 51d93bb

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

services/homepage/public/locales/en/translation.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"landingpage": {
33
"hero": {
44
"signup": "Signup",
5-
"text": "Meet people"
5+
"text": "Connect with family and friends"
66
}
77
},
88
"nav": {
Loading

services/homepage/src/pages/LandingPage/LandingPage.component.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,19 @@ export function LandingPageComponent(): React.ReactElement {
3434
/>
3535

3636
<Box>
37-
<Typography color="primary" gutterBottom variant="h3">
37+
<Typography color="white" gutterBottom sx={{ mb: 3 }} variant="h3">
3838
{t("landingpage.hero.text")}
3939
</Typography>
4040

4141
<Center>
4242
<Button
4343
component="a"
4444
href={CONFIG.URLS.SIGNUP_UP}
45+
size="large"
46+
sx={({ palette }) => ({
47+
backgroundImage: `linear-gradient(to left, ${palette.primary.light}, ${palette.secondary.main})`,
48+
fontWeight: 600,
49+
})}
4550
variant="contained"
4651
>
4752
{t("landingpage.hero.signup")}

0 commit comments

Comments
 (0)