Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | import {
Diversity2Outlined,
LoyaltyOutlined,
VerifiedUserOutlined,
} from "@mui/icons-material";
import { Box, Grid, Typography } from "@mui/material";
import { useTranslation } from "i18n";
import { LANDING } from "i18n/namespaces";
import { theme } from "theme";
const WhyCouchersSection = () => {
const { t } = useTranslation([LANDING]);
return (
<>
<Typography
sx={{
fontSize: "4rem",
fontWeight: "bold",
[theme.breakpoints.down("md")]: { fontSize: "2rem" },
}}
>
{t("why_couchers_title")}
</Typography>
<Grid
container
gap={2}
sx={{
padding: theme.spacing(3, 0),
width: "100%",
flexWrap: { xs: "wrap", md: "nowrap" },
}}
>
<Grid
size={{ xs: 12, md: 4 }}
display="flex"
sx={{
backgroundColor: theme.palette.grey[50],
padding: 3,
borderRadius: theme.shape.borderRadius,
flex: { md: 1 },
minWidth: 0,
marginLeft: { xs: 0, md: 2 },
}}
>
<Box display="flex" flexDirection="column" width="100%">
<Diversity2Outlined
color="primary"
sx={{ fontSize: "35px", marginBottom: 1 }}
/>
<Typography
gutterBottom
sx={{ fontSize: "1.4rem", fontWeight: "bold" }}
>
{t("community_first")}
</Typography>
<Typography sx={{ marginTop: 1 }}>
{t("community_first_description")}
</Typography>
</Box>
</Grid>
<Grid
size={{ xs: 12, md: 4 }}
display="flex"
sx={{
backgroundColor: theme.palette.grey[50],
padding: 3,
borderRadius: theme.shape.borderRadius,
flex: { md: 1 },
minWidth: 0,
}}
>
<Box display="flex" flexDirection="column" width="100%">
<VerifiedUserOutlined
color="primary"
sx={{ fontSize: "35px", marginBottom: 1 }}
/>
<Typography
gutterBottom
sx={{ fontSize: "1.4rem", fontWeight: "bold" }}
>
{t("safer_stronger")}
</Typography>
<Typography sx={{ marginTop: 1 }}>
{t("safer_stronger_description")}
</Typography>
</Box>
</Grid>
<Grid
size={{ xs: 12, md: 4 }}
display="flex"
sx={{
backgroundColor: theme.palette.grey[50],
padding: 3,
borderRadius: theme.shape.borderRadius,
flex: { md: 1 },
minWidth: 0,
marginRight: { xs: 0, md: 2 },
}}
>
<Box display="flex" flexDirection="column" width="100%">
<LoyaltyOutlined
color="primary"
sx={{ fontSize: "35px", marginBottom: 1 }}
/>
<Typography
gutterBottom
sx={{ fontSize: "1.4rem", fontWeight: "bold" }}
>
{t("built_by_travelers")}
</Typography>
<Typography sx={{ marginTop: 1 }}>
{t("built_by_travelers_description")}
</Typography>
</Box>
</Grid>
</Grid>
</>
);
};
export default WhyCouchersSection;
|