feat(home): atualizando infos no footerBottom

This commit is contained in:
Bernardo Cunha Ernani Waldhelm 2023-01-13 17:50:37 -03:00
parent 7bbc95be8d
commit 4f090048d0
4 changed files with 34 additions and 15 deletions

View File

@ -38,7 +38,7 @@ const FooterNewsletter = () => {
className={styles["footer-newsletter__form__input"]}
/>
<ErrorMessage
name="email"
name="emailNewsletter"
className={styles["footer-newsletter__form__error"]}
component="span"
/>

View File

@ -142,7 +142,7 @@
font-size: 28px;
line-height: 33px;
color: $color-black-500;
text-decoration: none;
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile}{
font-size: 14px;
line-height: 16px;

View File

@ -101,15 +101,22 @@ const FooterTop = () => {
<Accordion.Content>
<ul className={"footer__top__block__item-list"}>
<li className={"footer__top__block__item"}>
<span className={"footer__top__block__link"}>
<strong>
Atendimento Ao <br /> Consumidor
</strong>
</span>
<a
href="http://wa.me/(11)4159 9504"
target="_blank"
rel="noreferrer"
className={"footer__top__block__link"}
>
<span className={"footer__top__block__link"}>
<strong>
Atendimento Ao <br /> Consumidor
</strong>
</span>
</a>
</li>
<li className={"footer__top__block__item"}>
<a
href="http://wa.me/(11)4159 9504"
href="tel:(11)4159 9504"
target="_blank"
rel="noreferrer"
className={"footer__top__block__link"}
@ -118,13 +125,20 @@ const FooterTop = () => {
</a>
</li>
<li className={"footer__top__block__item"}>
<span className={"footer__top__block__link"}>
<strong>Atendimento Online</strong>
</span>
<a
href="http://wa.me/(11)99433-8825"
target="_blank"
rel="noreferrer"
className={"footer__top__block__link"}
>
<span className={"footer__top__block__link"}>
<strong>Atendimento Online</strong>
</span>
</a>
</li>
<li className={"footer__top__block__item"}>
<a
href="http://wa.me/(11)99433-8825"
href="tel:(11)99433-8825"
target="_blank"
rel="noreferrer"
className={"footer__top__block__link"}
@ -182,9 +196,14 @@ const FooterTop = () => {
</a>
</li>
</ul>
<span className={"footer__top__block-social__social-medias__site"}>
<a
href="https://www.loremipsum.com"
target="_blank"
rel="noreferrer"
className={"footer__top__block-social__social-medias__site"}
>
www.loremipsum.com
</span>
</a>
</div>
</div>
</section>

View File

@ -1,5 +1,5 @@
import * as Yup from 'yup';
export default Yup.object().shape({
emailNewsletter: Yup.string().email("*Email inválido").required("*Campo Obrigatório"),
emailNewsletter: Yup.string().email("*Email inválido").required(""),
})