diff --git a/src/components/Contact/Contact.tsx b/src/components/Contact/Contact.tsx new file mode 100644 index 0000000..f22e15f --- /dev/null +++ b/src/components/Contact/Contact.tsx @@ -0,0 +1,18 @@ +import React from "react"; +import styles from "./contact.module.scss"; + +const Contact = () => { + return ( +
+

FALE CONOSCO

+

Atendimento Ao Consumidor

+ (11) 4159 9504 +

Atendimento Online

+ + (11) 99433 8825 + +
+ ); +}; + +export { Contact }; diff --git a/src/components/Contact/contact.module.scss b/src/components/Contact/contact.module.scss new file mode 100644 index 0000000..7b3d424 --- /dev/null +++ b/src/components/Contact/contact.module.scss @@ -0,0 +1,19 @@ +.contatosInfo { + margin-bottom: 12px; + h2 { + font-weight: 500; + font-size: 14px; + line-height: 16px; + } + p { + font-size: 12px; + line-height: 14px; + font-weight: 500; + } + a { + text-decoration: none; + font-weight: 400; + font-size: 12px; + line-height: 14px; + } +} diff --git a/src/components/Doubts/Doubts.tsx b/src/components/Doubts/Doubts.tsx new file mode 100644 index 0000000..1b0a415 --- /dev/null +++ b/src/components/Doubts/Doubts.tsx @@ -0,0 +1,30 @@ +import React from "react"; +import styles from "./doubts.module.scss"; + +const Doubts = () => { + return ( + + ); +}; + +export { Doubts }; diff --git a/src/components/Doubts/doubts.module.scss b/src/components/Doubts/doubts.module.scss new file mode 100644 index 0000000..d05c1c6 --- /dev/null +++ b/src/components/Doubts/doubts.module.scss @@ -0,0 +1,32 @@ +.doubtsList { + li { + color: #303030; + margin-bottom: 12px; + @media screen and (min-width: 2500px) { + } + } + a { + font-size: 12px; + line-height: 14.06px; + font-weight: 400; + text-decoration: none; + color: #303030; + @media screen and (min-width: 2500px) { + font-size: 24px; + line-height: 29px; + } + h2 { + font-size: 14px; + font-weight: 500; + line-height: 16.41px; + color: #303030; + @media screen and (min-width: 2500px) { + font-size: 28px; + line-height: 33px; + } + } + } + .duvidasFreq { + text-decoration: underline; + } +} diff --git a/src/components/Institutional/Institutional.tsx b/src/components/Institutional/Institutional.tsx new file mode 100644 index 0000000..78c0a84 --- /dev/null +++ b/src/components/Institutional/Institutional.tsx @@ -0,0 +1,30 @@ +import React from "react"; +import styles from "./institutional.module.scss"; + +const Institutional = () => { + return ( + + ); +}; + +export { Institutional }; diff --git a/src/components/Institutional/institutional.module.scss b/src/components/Institutional/institutional.module.scss new file mode 100644 index 0000000..316fb5f --- /dev/null +++ b/src/components/Institutional/institutional.module.scss @@ -0,0 +1,32 @@ +.institutionalList { + li { + color: #303030; + margin-bottom: 12px; + @media screen and (min-width: 2500px) { + } + } + a { + font-size: 12px; + line-height: 14.06px; + font-weight: 400; + text-decoration: none; + color: #303030; + @media screen and (min-width: 2500px) { + font-size: 24px; + line-height: 29px; + } + h2 { + font-size: 14px; + font-weight: 500; + line-height: 16.41px; + color: #303030; + @media screen and (min-width: 2500px) { + font-size: 28px; + line-height: 33px; + } + } + } + .revendedor { + text-decoration: underline; + } +} diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 1bb2c73..07a8fbd 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -1,7 +1,12 @@ import React from "react"; +import { Contact } from "../components/Contact/Contact"; const Home = () => { - return
{}
; + return ( +
+ +
+ ); }; export { Home }; diff --git a/src/styles/common/global.scss b/src/styles/common/global.scss index ed3cbeb..647fc6d 100644 --- a/src/styles/common/global.scss +++ b/src/styles/common/global.scss @@ -1,3 +1,5 @@ +@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"); + * { margin: 0; padding: 0; @@ -6,7 +8,7 @@ body, input, button { - font-family: sans-serif; + font-family: "Roboto"; font-size: 16px; color: #333; }