feature/footer #16

Merged
SavioCarvalhoMoraes merged 5 commits from feature/footer into development 2023-01-19 15:02:48 +00:00
15 changed files with 153 additions and 16 deletions
Showing only changes of commit 8ec02ff0c9 - Show all commits

View File

@ -1,7 +1,8 @@
import React from "react";
import styles from "./address.module.scss";
const Address = () => {
return (
<p>
<p className={styles["endereco"]}>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor
</p>

View File

@ -0,0 +1,13 @@
.endereco {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-size: 10px;
line-height: 12px;
text-transform: capitalize;
color: white;
margin: 0 0 0 0;
@media screen and (min-width: 2500px) {
font-size: 20px;
}
}

View File

@ -3,6 +3,27 @@
flex-direction: row;
align-items: center;
p {
margin-right: 30px;
display: flex;
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-size: 10px;
line-height: 12px;
text-transform: capitalize;
margin-right: 13px;
color: white;
margin: 0 13px 0 0;
@media screen and (min-width: 2500px) {
font-size: 20px;
}
}
img {
width: 44.92px;
height: 16px;
@media screen and (min-width: 2500px) {
width: 84.22px;
height: 30px;
}
}
}

View File

@ -38,7 +38,7 @@ const Payments = () => {
};
const VtexPci = () => {
return <img src={vtexImg} alt="vtx Pci" />;
return <img className={styles["paymentsPci"]} src={vtexImg} alt="vtx Pci" />;
};
export { Payments, VtexPci };

View File

@ -1,4 +1,15 @@
.paymentsList {
display: flex;
flex-direction: row;
gap: 12px;
}
.paymentsItem {
}
img {
width: 35px;
height: 20.2px;
}
.paymentsPci {
width: 54.61px;
height: 34px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -3,6 +3,27 @@
flex-direction: row;
align-items: center;
p {
margin-right: 30px;
display: flex;
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-size: 10px;
line-height: 12px;
text-transform: capitalize;
margin-right: 13px;
color: white;
margin: 0 13px 0 0;
@media screen and (min-width: 2500px) {
font-size: 20px;
}
}
img {
width: 44.92px;
height: 16px;
@media screen and (min-width: 2500px) {
width: 84.22px;
height: 30px;
}
}
}

View File

@ -11,19 +11,29 @@ const Socials = () => {
<div className={styles["socials-wrapper"]}>
<ul className={styles["socialsList"]}>
<li className={styles["socials-item"]}>
<img src={facebookImg} alt="Facebook" />
<a href="">
<img src={facebookImg} alt="Facebook" />
</a>
</li>
<li className={styles["socials-item"]}>
<img src={instagramImg} alt="Instagram" />
<a href="">
<img src={instagramImg} alt="Instagram" />
</a>
</li>
<li className={styles["socials-item"]}>
<img src={twitterImg} alt="Twitter" />
<a href="">
<img src={twitterImg} alt="Twitter" />
</a>
</li>
<li className={styles["socials-item"]}>
<img src={youtubeImg} alt="Youtube" />
<a href="">
<img src={youtubeImg} alt="Youtube" />
</a>
</li>
<li className={styles["socials-item"]}>
<img src={linkedinImg} alt="Linkedin" />
<a href="">
<img src={linkedinImg} alt="Linkedin" />
</a>
</li>
</ul>
<a className={styles["siteLink"]} href="/">

View File

@ -20,8 +20,8 @@
line-height: 32.81px;
}
}
}
img {
width: 35px;
height: 35px;
img {
width: 35px;
height: 35px;
}
}

View File

@ -1,10 +1,13 @@
import React from "react";
import whatsappImg from "./assets/image/whatsapp.png";
import styles from "./whatsapp.module.scss";
const Whatsapp = () => {
return (
<div>
<img src={whatsappImg} alt="Whatsapp" />
<div className={styles["whatsapp-wrapper"]}>
<a href="https://wa.me/11994338825" target="_blank">
<img src={whatsappImg} alt="Whatsapp" />
</a>
</div>
);
};

View File

@ -0,0 +1,10 @@
.whatsapp-wrapper {
img {
width: 34px;
height: 34px;
@media screen and (min-width: 2500px) {
width: 66px;
height: 66px;
}
}
}

View File

@ -0,0 +1,26 @@
import { Address } from "../../../components/Address/Address";
import { Payments } from "../../../components/Payments/Payments";
import { VtexPci } from "../../../components/Payments/Payments";
import { PoweredBy } from "../../../components/PoweredBy/PoweredBy";
const BottomFooter = () => {
return (
<div className="bottom_footer">
<ul className="bottom_footer_itens">
<li className="bottom_footer_item">
<Address></Address>
</li>
<li className="bottom_footer_item pagamentos">
<Payments></Payments>
<p>|</p>
<VtexPci></VtexPci>
</li>
<li className="bottom_footer_item">
<PoweredBy></PoweredBy>
</li>
</ul>
</div>
);
};
export { BottomFooter };

View File

@ -1,9 +1,10 @@
import { TopFooter } from "./TopFooter/TopFooter";
import { BottomFooter } from "./BottomFooter/BottomFooter";
const Footer = () => {
return (
<div className="footer-wrapper">
<TopFooter></TopFooter>
<BottomFooter></BottomFooter>
</div>
);
};

View File

@ -8,3 +8,5 @@
@import "partials/top_header.scss";
@import "partials/bottom_header.scss";
@import "partials/top_footer.scss";
@import "partials/footer.scss";
@import "partials/bottom_footer.scss";

View File

@ -0,0 +1,18 @@
.bottom_footer {
display: flex;
flex-direction: row;
background: black;
}
.bottom_footer_itens {
display: flex;
flex-direction: row;
}
.pagamentos {
display: flex;
flex-direction: row;
p {
color: white;
}
gap: 5px;
}