development #5

Merged
SavioCarvalhoMoraes merged 12 commits from development into feature/header 2023-01-12 18:41:23 +00:00
7 changed files with 44 additions and 14 deletions
Showing only changes of commit e5434d0174 - Show all commits

View File

@ -0,0 +1,13 @@
import React from "react";
import m3Logo from "./assets/image/m3Logo.png";
import styles from "./developedBy.module.scss";
const DevelopedBy = () => {
return (
<div className={styles["developed-wrapper"]}>
<p>Developed by</p>
<img src={m3Logo} alt="m3Logo" />
</div>
);
};
export { DevelopedBy };

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,8 @@
.developed-wrapper {
display: flex;
flex-direction: row;
align-items: center;
p {
margin-right: 30px;
}
}

View File

@ -0,0 +1,13 @@
import React from "react";
import vtexLogo from "./assets/image/vtexLogo.png";
import styles from "./poweredBy.module.scss";
const PoweredBy = () => {
return (
<div className={styles["powered-wrapper"]}>
<p>Powered by</p>
<img src={vtexLogo} alt="vtexLogo" />
</div>
);
};
export { PoweredBy };

Binary file not shown.

After

Width:  |  Height:  |  Size: 928 B

View File

@ -0,0 +1,8 @@
.powered-wrapper {
display: flex;
flex-direction: row;
align-items: center;
p {
margin-right: 30px;
}
}

View File

@ -1,19 +1,7 @@
import React from "react";
import { Header } from "../sectors/Header/Header";
import { Address } from "../components/Address/Address";
import { Payments, VtexPci } from "../components/Payments/Payments";
const Home = () => {
return (
<div>
{
//<Header />
//<Address />
}
<Payments></Payments>
<VtexPci></VtexPci>
</div>
);
const Home = () => {
return <div>{}</div>;
};
export { Home };