-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Molekulah
committed
Oct 15, 2021
1 parent
bcc8e25
commit 025cf10
Showing
2 changed files
with
51 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import React from "react"; | ||
import { Stack, Typography } from "@mui/material"; | ||
import Box from "@mui/material/Box"; | ||
|
||
const PlansText = ({ TextTypography }) => { | ||
return ( | ||
<Stack direction="column"> | ||
<Box | ||
sx={{ | ||
letterSpacing: "0.025em", | ||
textAlign: "center", | ||
fontStyle: "normal", | ||
zIndex: "20", | ||
}} | ||
> | ||
<Typography | ||
sx={{ | ||
fontFamily: "Nunito, sans-serif", | ||
fontSize: "36px", | ||
fontWeight: "800", | ||
lineHeight: "49px", | ||
}} | ||
> | ||
Planos que cabem no seu bolso | ||
</Typography> | ||
<TextTypography | ||
sx={{ | ||
fontFamily: "Nunito, sans-serif", | ||
fontSize: "20px", | ||
fontWeight: "400", | ||
lineHeight: "27px", | ||
width: "450px", | ||
marginLeft: "auto", | ||
marginRight: "auto", | ||
paddingTop: "35px", | ||
paddingBottom: "35px", | ||
}} | ||
> | ||
Crie um plano personalizado de acordo com a sua necessidade. Todos os | ||
recursos estão disponíveis em todos os planos. Não importa o tamanho | ||
da sua empresa, estamos aqui para te ajudar a modernizar o seu | ||
atendimento. | ||
</TextTypography>{" "} | ||
</Box> | ||
</Stack> | ||
); | ||
}; | ||
|
||
export default PlansText; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters