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 | 18x 20x 20x | import { Box, Stack } from "@mui/material";
import { Text } from "@common/Text";
import { palette } from "@palette";
import { useThemeContext } from "@components/EnterpriseSettings/Branding/Provider/CustomThemeProvider";
const PageTitle = () => {
const { gradient } = useThemeContext();
return (
<Stack direction="column" gap={2} alignItems="flex-start">
<Text
variant="h1"
fontSize="56px"
lineHeight="67.2px"
color={palette.black[200]}
fontWeight="book"
align="left"
sx={{ letterSpacing: "-1.68px" }}
>
Open your{" "}
<Box
component="span"
sx={{
background: gradient,
backgroundClip: "text",
color: "transparent",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "tranparent",
}}
>
Business Account
</Box>
</Text>
</Stack>
);
};
export default PageTitle;
|