diff --git a/src/components/footer/info-agencia-mobile/assets/plus.png b/src/components/footer/info-agencia-mobile/assets/plus.png new file mode 100644 index 0000000..e8de540 Binary files /dev/null and b/src/components/footer/info-agencia-mobile/assets/plus.png differ diff --git a/src/components/footer/info-agencia-mobile/info-agencia-mobile.module.scss b/src/components/footer/info-agencia-mobile/info-agencia-mobile.module.scss index e69de29..22f2e38 100644 --- a/src/components/footer/info-agencia-mobile/info-agencia-mobile.module.scss +++ b/src/components/footer/info-agencia-mobile/info-agencia-mobile.module.scss @@ -0,0 +1,57 @@ +.accordion { + display: flex; + margin: 24px 16px; + gap: 12px; + flex-direction: column; + @media (min-width: 1151px) { + display: none; + } + + .accordionContainer { + background-color: #ffffff; + border: none; + padding: 0; + .accordionDiv { + display: flex; + justify-content: space-between; + align-items: center; + + & img { + height: 8px; + } + + & span { + font-family: "Roboto"; + font-style: normal; + font-weight: 500; + font-size: 14px; + line-height: 16px; + color: #303030; + } + } + } +} +.socialIconsMobile { + display: flex; + gap: 12px; + & img { + height: 35px; + } + + & span { + display: flex; + gap: 10px; + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 16px; + color: #303030; + } +} +.accordionLi { + & li { + list-style: none; + margin: 12px 0 12px 0; + } +} diff --git a/src/components/footer/info-agencia-mobile/info-agencia-mobile.tsx b/src/components/footer/info-agencia-mobile/info-agencia-mobile.tsx index 2f72670..7b13b77 100644 --- a/src/components/footer/info-agencia-mobile/info-agencia-mobile.tsx +++ b/src/components/footer/info-agencia-mobile/info-agencia-mobile.tsx @@ -1,5 +1,10 @@ import style from "./info-agencia-mobile.module.scss"; -import img from "../assets/Boleto.png"; +import plus from "./assets/plus.png"; +import facebook from "../../info-agencia/assets/facebook.png"; +import instagram from "../../info-agencia/assets/instagram.png"; +import linkedin from "../../info-agencia/assets/linkedin.png"; +import twitter from "../../info-agencia/assets/twitter.png"; +import youtube from "../../info-agencia/assets/youtube.png"; import { Accordion, @@ -10,16 +15,16 @@ import { export const InfoAgenciaMobile = () => { return ( - + - -
+ +
Institucional - +
-
+
  • Quem somos
  • Política de Privacidade
  • Segurança
  • @@ -29,14 +34,15 @@ export const InfoAgenciaMobile = () => { - -
    + +
    Dúvidas +
    -
    +
  • Entrega
  • Pagamento
  • Trocas e Devoluções
  • @@ -45,14 +51,15 @@ export const InfoAgenciaMobile = () => { - -
    + +
    Fale conosco +
    -
    +
  • Atendimento ao Consumidor
  • (11) 4159-9504
  • Atendimento Online
  • @@ -60,7 +67,29 @@ export const InfoAgenciaMobile = () => {
    -
    + + www.loremipsum.com ); };