feature/body #4
@ -10,11 +10,14 @@
|
||||
"@types/node": "^16.18.11",
|
||||
"@types/react": "^18.0.26",
|
||||
"@types/react-dom": "^18.0.10",
|
||||
"formik": "^2.2.9",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-scripts": "5.0.1",
|
||||
"typescript": "^4.9.4",
|
||||
"web-vitals": "^2.1.4"
|
||||
"web-vitals": "^2.1.4",
|
||||
"yup": "^0.32.11",
|
||||
"yupi": "^1.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
|
3
desafio5/src/assets/img/house.svg
Normal file
3
desafio5/src/assets/img/house.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M30.9231 14.8352L28.692 12.6041L16.4147 0.326808C15.9789 -0.108936 15.2723 -0.108936 14.8365 0.326808L2.55915 12.6041L0.326936 14.8364C-0.101287 15.2798 -0.089058 15.9863 0.354338 16.4146C0.786878 16.8323 1.47257 16.8323 1.90511 16.4146L2.23099 16.0864V30.1339C2.23099 30.7503 2.73069 31.25 3.34713 31.25H27.9018C28.5182 31.25 29.0179 30.7503 29.0179 30.1339V16.0864L29.3449 16.4134C29.7883 16.8417 30.4949 16.8294 30.9231 16.386C31.3408 15.9535 31.3408 15.2677 30.9231 14.8352ZM18.9728 29.0178H12.2761V20.0888H18.9728V29.0178ZM26.7856 29.0178H21.2051V18.9727C21.2051 18.3563 20.7054 17.8566 20.0889 17.8566H11.16C10.5436 17.8566 10.0438 18.3563 10.0438 18.9727V29.0178H4.46327V13.8542L15.6244 2.69296L26.7856 13.8542V29.0178Z" fill="#C4C4C4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 857 B |
Binary file not shown.
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 6.2 KiB |
3
desafio5/src/assets/img/seta.svg
Normal file
3
desafio5/src/assets/img/seta.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.94167 7.03685L2.22531 0.320703C1.79807 -0.106746 1.10537 -0.106746 0.678334 0.320703C0.251265 0.747771 0.251265 1.44043 0.678334 1.86747L6.62128 7.81023L0.678507 13.7528C0.251438 14.18 0.251438 14.8726 0.678507 15.2997C1.10558 15.7269 1.79824 15.7269 2.22548 15.2997L8.94185 8.58344C9.15538 8.3698 9.26203 8.0901 9.26203 7.81026C9.26203 7.53029 9.15517 7.25038 8.94167 7.03685Z" fill="#C4C4C4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 511 B |
56
desafio5/src/components/Body/Body.tsx
Normal file
56
desafio5/src/components/Body/Body.tsx
Normal file
@ -0,0 +1,56 @@
|
||||
import React from "react";
|
||||
import home from "../../assets/img/house.svg";
|
||||
import seta from "../../assets/img/seta.svg";
|
||||
import TabLayout from "./Tabs/TabLayout";
|
||||
import Sobre from "./Tabs/Sobre";
|
||||
import FormaDePagamento from "./Tabs/FormaDePagamento";
|
||||
import Entrega from "./Tabs/Entrega";
|
||||
import TrocaEDevolucao from "./Tabs/TrocaEDevolucao";
|
||||
import SegurancaEPrivacidade from "./Tabs/SegurancaEPrivacidade";
|
||||
import Contato from "./Tabs/Contato";
|
||||
import style from "./body.module.scss";
|
||||
|
||||
const Body = () => {
|
||||
const TabsItems = [
|
||||
{
|
||||
title: "Sobre",
|
||||
component: <Sobre />,
|
||||
},
|
||||
{
|
||||
title: "Forma de Pagamento",
|
||||
component: <FormaDePagamento />,
|
||||
},
|
||||
{
|
||||
title: "Entrega",
|
||||
component: <Entrega />,
|
||||
},
|
||||
{
|
||||
title: "Troca e Devolução",
|
||||
component: <TrocaEDevolucao />,
|
||||
},
|
||||
{
|
||||
title: "Segurança e Privacidade",
|
||||
component: <SegurancaEPrivacidade />,
|
||||
},
|
||||
{
|
||||
title: "Contato",
|
||||
component: <Contato />,
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<div className={style["body"]}>
|
||||
<div className={style["breadcrumb"]}>
|
||||
<img className={style["home"]} src={home} alt="home" />
|
||||
<img className={style["seta"]} src={seta} alt="seta" />
|
||||
<p className={style["breadcrumb-text"]}>INSTITUCIONAL</p>
|
||||
</div>
|
||||
<h1 className={style["title-body"]}>INSTITUCIONAL</h1>
|
||||
<div className={style["container"]}>
|
||||
<TabLayout tabs={TabsItems} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Body;
|
131
desafio5/src/components/Body/Tabs/Contato.tsx
Normal file
131
desafio5/src/components/Body/Tabs/Contato.tsx
Normal file
@ -0,0 +1,131 @@
|
||||
import React, { useState } from "react";
|
||||
|
||||
import style from "./form.module.scss";
|
||||
|
||||
import { Formik, Form, Field, ErrorMessage } from "formik";
|
||||
import FormSchema from "../../../schema/FromSchema";
|
||||
|
||||
interface IFormikValues {
|
||||
name: string;
|
||||
email: string;
|
||||
cpf: string;
|
||||
nascimento: string;
|
||||
telefone: string;
|
||||
instagram: string;
|
||||
terms: string;
|
||||
}
|
||||
|
||||
const initialValues = {
|
||||
name: "",
|
||||
email: "",
|
||||
cpf: "",
|
||||
nascimento: "",
|
||||
telefone: "",
|
||||
instagram: "",
|
||||
terms: "",
|
||||
};
|
||||
|
||||
const Contato = () => {
|
||||
const [success, setSuccess] = useState(false);
|
||||
const handleFormikSubmit = (values: IFormikValues) => {};
|
||||
return (
|
||||
<div className={style["form-wrapper"]}>
|
||||
<Formik
|
||||
onSubmit={(values, { resetForm }) => {
|
||||
handleFormikSubmit(values);
|
||||
resetForm();
|
||||
setSuccess(true);
|
||||
}}
|
||||
initialValues={initialValues}
|
||||
validationSchema={FormSchema}>
|
||||
{
|
||||
<Form>
|
||||
<h2 className="">Preencha o Formulário</h2>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="name">Nome</label>
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="name"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
<Field id="name" name="name" placeholder="Seu nome completo" />
|
||||
</div>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="email">E-mail</label>
|
||||
<Field id="email" name="email" placeholder="Seu e-mail" />
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="email"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
</div>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="cpf">CPF</label>
|
||||
<Field id="cpf" name="cpf" placeholder="000.000.000-00" />
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="cpf"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
</div>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="nascimento">Data de Nascimento:</label>
|
||||
<Field
|
||||
id="nascimento"
|
||||
name="nascimento"
|
||||
placeholder="00.00.0000"
|
||||
/>
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="nascimento"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
</div>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="telefone">Telefone:</label>
|
||||
<Field
|
||||
id="telefone"
|
||||
name="telefone"
|
||||
placeholder="(00) 00000-0000"
|
||||
/>
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="telefone"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
</div>
|
||||
<div className={style["form-col"]}>
|
||||
<label htmlFor="instagram">Instagram</label>
|
||||
<Field id="instagram" name="instagram" placeholder="@seuuser" />
|
||||
<ErrorMessage
|
||||
component="span"
|
||||
name="instagram"
|
||||
className={style["form-invalid-feedback"]}
|
||||
/>
|
||||
</div>
|
||||
<div className={style["form-terms"]}>
|
||||
<label className={style["declare"]} htmlFor="terms">
|
||||
Declaro que li e aceito
|
||||
</label>
|
||||
<Field
|
||||
className={style["terms"]}
|
||||
type="checkbox"
|
||||
id="terms"
|
||||
name="terms"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<button type="submit">Cadastre-se</button>
|
||||
{success && (
|
||||
<span className={style["success"]}>
|
||||
*Formulário enviado com sucesso!
|
||||
</span>
|
||||
)}
|
||||
</Form>
|
||||
}
|
||||
</Formik>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Contato;
|
41
desafio5/src/components/Body/Tabs/Entrega.tsx
Normal file
41
desafio5/src/components/Body/Tabs/Entrega.tsx
Normal file
@ -0,0 +1,41 @@
|
||||
import React from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
const Entrega = () => {
|
||||
return (
|
||||
<div>
|
||||
<h2 className={style["title-text"]}>Entrega</h2>
|
||||
<p className={style["text"]}>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
|
||||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
|
||||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
|
||||
mollit anim id est laborum.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||
accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab
|
||||
illo inventore veritatis et quasi architecto beatae vitae dicta sunt
|
||||
explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut
|
||||
odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
|
||||
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum
|
||||
quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam
|
||||
eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat
|
||||
voluptatem.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis
|
||||
suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis
|
||||
autem vel eum iure reprehenderit qui in ea voluptate velit esse quam
|
||||
nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo
|
||||
voluptas nulla pariatur?
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Entrega;
|
41
desafio5/src/components/Body/Tabs/FormaDePagamento.tsx
Normal file
41
desafio5/src/components/Body/Tabs/FormaDePagamento.tsx
Normal file
@ -0,0 +1,41 @@
|
||||
import React from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
const FormaDePagamento = () => {
|
||||
return (
|
||||
<div>
|
||||
<h2 className={style["title-text"]}>Forma de Pagamento</h2>
|
||||
<p className={style["text"]}>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
|
||||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
|
||||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
|
||||
mollit anim id est laborum.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||
accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab
|
||||
illo inventore veritatis et quasi architecto beatae vitae dicta sunt
|
||||
explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut
|
||||
odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
|
||||
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum
|
||||
quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam
|
||||
eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat
|
||||
voluptatem.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis
|
||||
suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis
|
||||
autem vel eum iure reprehenderit qui in ea voluptate velit esse quam
|
||||
nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo
|
||||
voluptas nulla pariatur?
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default FormaDePagamento;
|
41
desafio5/src/components/Body/Tabs/SegurancaEPrivacidade.tsx
Normal file
41
desafio5/src/components/Body/Tabs/SegurancaEPrivacidade.tsx
Normal file
@ -0,0 +1,41 @@
|
||||
import React from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
const SegurancaEPrivacidade = () => {
|
||||
return (
|
||||
<div>
|
||||
<h2 className={style["title-text"]}>Segurança e Privacidade</h2>
|
||||
<p className={style["text"]}>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
|
||||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
|
||||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
|
||||
mollit anim id est laborum.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||
accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab
|
||||
illo inventore veritatis et quasi architecto beatae vitae dicta sunt
|
||||
explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut
|
||||
odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
|
||||
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum
|
||||
quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam
|
||||
eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat
|
||||
voluptatem.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis
|
||||
suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis
|
||||
autem vel eum iure reprehenderit qui in ea voluptate velit esse quam
|
||||
nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo
|
||||
voluptas nulla pariatur?
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SegurancaEPrivacidade;
|
41
desafio5/src/components/Body/Tabs/Sobre.tsx
Normal file
41
desafio5/src/components/Body/Tabs/Sobre.tsx
Normal file
@ -0,0 +1,41 @@
|
||||
import React from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
const Sobre = () => {
|
||||
return (
|
||||
<div>
|
||||
<h2 className={style["title-text"]}>Sobre</h2>
|
||||
<p className={style["text"]}>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
|
||||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
|
||||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
|
||||
mollit anim id est laborum.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||
accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab
|
||||
illo inventore veritatis et quasi architecto beatae vitae dicta sunt
|
||||
explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut
|
||||
odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
|
||||
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum
|
||||
quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam
|
||||
eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat
|
||||
voluptatem.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis
|
||||
suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis
|
||||
autem vel eum iure reprehenderit qui in ea voluptate velit esse quam
|
||||
nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo
|
||||
voluptas nulla pariatur?
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Sobre;
|
43
desafio5/src/components/Body/Tabs/TabLayout.tsx
Normal file
43
desafio5/src/components/Body/Tabs/TabLayout.tsx
Normal file
@ -0,0 +1,43 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
interface MenuValue {
|
||||
title: string;
|
||||
component: JSX.Element;
|
||||
}
|
||||
|
||||
export interface TabLayoutProps {
|
||||
tabs: MenuValue[];
|
||||
}
|
||||
|
||||
const TabLayout: React.FC<TabLayoutProps> = ({ tabs }) => {
|
||||
const [selectedTab, setselectedTab] = useState<MenuValue>();
|
||||
useEffect(() => {
|
||||
setselectedTab(tabs[0]);
|
||||
}, [tabs]);
|
||||
const handleClick = (tab: MenuValue) => {
|
||||
setselectedTab(tab);
|
||||
};
|
||||
return (
|
||||
<>
|
||||
<ul className={style["list"]}>
|
||||
{tabs.map((tab, index) => {
|
||||
return (
|
||||
<li
|
||||
onClick={() => {
|
||||
handleClick(tab);
|
||||
}}
|
||||
className={
|
||||
tabs.indexOf(selectedTab!) === index ? style["active"] : ""
|
||||
}>
|
||||
{tab.title}
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ul>
|
||||
<div className={style["wrapper-text"]}>{selectedTab?.component}</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TabLayout;
|
41
desafio5/src/components/Body/Tabs/TrocaEDevolucao.tsx
Normal file
41
desafio5/src/components/Body/Tabs/TrocaEDevolucao.tsx
Normal file
@ -0,0 +1,41 @@
|
||||
import React from "react";
|
||||
import style from "../body.module.scss";
|
||||
|
||||
const TrocaEDevolucao = () => {
|
||||
return (
|
||||
<div>
|
||||
<h2 className={style["title-text"]}>Troca e Devolução</h2>
|
||||
<p className={style["text"]}>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
|
||||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
|
||||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
|
||||
mollit anim id est laborum.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||
accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab
|
||||
illo inventore veritatis et quasi architecto beatae vitae dicta sunt
|
||||
explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut
|
||||
odit aut fugit, sed quia consequuntur magni dolores eos qui ratione
|
||||
voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum
|
||||
quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam
|
||||
eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat
|
||||
voluptatem.
|
||||
</p>
|
||||
<br />
|
||||
<p className={style["text"]}>
|
||||
Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis
|
||||
suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis
|
||||
autem vel eum iure reprehenderit qui in ea voluptate velit esse quam
|
||||
nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo
|
||||
voluptas nulla pariatur?
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default TrocaEDevolucao;
|
148
desafio5/src/components/Body/Tabs/form.module.scss
Normal file
148
desafio5/src/components/Body/Tabs/form.module.scss
Normal file
@ -0,0 +1,148 @@
|
||||
.form-wrapper {
|
||||
max-height: 100vh;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.form-wrapper h2 {
|
||||
margin-bottom: 12px;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
text-transform: unset;
|
||||
}
|
||||
|
||||
.form-wrapper form {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-col {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.form-col label {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
color: #100d0e;
|
||||
margin: 0 0 12px 15px;
|
||||
}
|
||||
|
||||
.form-col input {
|
||||
height: 46px;
|
||||
border: 1px solid black;
|
||||
border-radius: 25px;
|
||||
padding: 15px 0px 15px 20px;
|
||||
}
|
||||
|
||||
.form-col ::placeholder {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
color: #b9b7b7;
|
||||
}
|
||||
|
||||
.form-wrapper button {
|
||||
width: 100%;
|
||||
height: 52px;
|
||||
border: 1px solid black;
|
||||
border-radius: 25px;
|
||||
color: white;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 19px;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.form-wrapper button:hover {
|
||||
filter: brightness(80%);
|
||||
}
|
||||
|
||||
.form-invalid-feedback {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin-right: 20px;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
text-align: right;
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
.form-terms {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 12px;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.form-terms label::before {
|
||||
content: "*";
|
||||
color: red;
|
||||
margin: 3.5px;
|
||||
}
|
||||
|
||||
.form-terms input {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.success {
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px) {
|
||||
.form-wrapper h2 {
|
||||
font-size: 48px;
|
||||
line-height: 56px;
|
||||
}
|
||||
.form-col label {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
.form-col input {
|
||||
height: 63px;
|
||||
padding: 15px 0px 15px 20px;
|
||||
font-size: 28px;
|
||||
}
|
||||
.form-col ::placeholder {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
.form-invalid-feedback {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
.declare {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
.form-terms input {
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
}
|
||||
.form-wrapper button {
|
||||
height: 71px;
|
||||
font-size: 32px;
|
||||
line-height: 38px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.form-wrapper {
|
||||
margin: 0;
|
||||
}
|
||||
.form-wrapper h2 {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
188
desafio5/src/components/Body/body.module.scss
Normal file
188
desafio5/src/components/Body/body.module.scss
Normal file
@ -0,0 +1,188 @@
|
||||
.body {
|
||||
margin: 30px 100px 70px;
|
||||
.breadcrumb {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.home {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.seta {
|
||||
width: 5px;
|
||||
height: 8px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
.breadcrumb-text {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
color: #c4c4c4;
|
||||
}
|
||||
}
|
||||
.title-body {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
letter-spacing: 0.1em;
|
||||
color: #292929;
|
||||
margin: 80px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
text-align: justify;
|
||||
min-height: 285px;
|
||||
|
||||
.list {
|
||||
border-right: 1px solid #000000;
|
||||
max-height: 285px;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 19px;
|
||||
color: #7d7d7d;
|
||||
width: 302px;
|
||||
padding: 10px 0px 10px 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
li.active {
|
||||
background-color: #000000;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 19px;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
.wrapper-text {
|
||||
width: 100%;
|
||||
margin-left: 30px;
|
||||
|
||||
.title-text {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
color: #292929;
|
||||
margin-bottom: 12px;
|
||||
margin-top: 10px;
|
||||
text-transform: unset;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
line-height: 15px;
|
||||
color: #7d7d7d;
|
||||
text-transform: unset;
|
||||
}
|
||||
|
||||
.last {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px) {
|
||||
.body {
|
||||
margin: 30px 100px 84px;
|
||||
.breadcrumb {
|
||||
.home {
|
||||
width: 31px;
|
||||
height: 31px;
|
||||
}
|
||||
.seta {
|
||||
width: 9px;
|
||||
height: 16px;
|
||||
margin: 0 12px;
|
||||
}
|
||||
.breadcrumb-text {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
.title-body {
|
||||
font-weight: 400;
|
||||
font-size: 48px;
|
||||
line-height: 56px;
|
||||
}
|
||||
|
||||
.container {
|
||||
.list {
|
||||
max-height: unset;
|
||||
height: 495px;
|
||||
li {
|
||||
font-size: 32px;
|
||||
line-height: 38px;
|
||||
width: 590px;
|
||||
}
|
||||
li.active {
|
||||
font-size: 32px;
|
||||
line-height: 38px;
|
||||
}
|
||||
}
|
||||
|
||||
.wrapper-text {
|
||||
.title-text {
|
||||
font-size: 48px;
|
||||
line-height: 56px;
|
||||
}
|
||||
.text {
|
||||
font-weight: 400;
|
||||
font-size: 26px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.body {
|
||||
margin: 30px 16px 80px;
|
||||
|
||||
.title-body {
|
||||
margin: 80px 0 40px;
|
||||
}
|
||||
.container {
|
||||
flex-direction: column;
|
||||
|
||||
.list {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
max-width: unset;
|
||||
li {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.wrapper-text {
|
||||
margin: 0;
|
||||
margin-top: 20px;
|
||||
|
||||
.title-text {
|
||||
text-align: center;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
import React from "react";
|
||||
import React, { useState, useEffect } from "react";
|
||||
import master from "../../assets/img/Master.svg";
|
||||
import visa from "../../assets/img/Visa.svg";
|
||||
import amex from "../../assets/img/Diners.svg";
|
||||
@ -17,6 +17,20 @@ import linkedin from "../../assets/img/link.svg";
|
||||
import style from "./footer.module.scss";
|
||||
|
||||
const Footer = () => {
|
||||
const [visible, setVisible] = useState(false);
|
||||
useEffect(() => {
|
||||
const handleResize = () => {
|
||||
if (window.pageYOffset > 100) {
|
||||
setVisible(true);
|
||||
} else {
|
||||
setVisible(false);
|
||||
}
|
||||
};
|
||||
window.addEventListener("scroll", handleResize);
|
||||
return () => {
|
||||
window.removeEventListener("scroll", handleResize);
|
||||
};
|
||||
}, []);
|
||||
return (
|
||||
<>
|
||||
<div className={style["footer-top"]}>
|
||||
@ -109,11 +123,13 @@ const Footer = () => {
|
||||
className={style["button-whats"]}
|
||||
target="blank"
|
||||
href="https://wa.me/+55022997886109">
|
||||
.
|
||||
</a>
|
||||
<a href="#header" className={style["up-button"]}>
|
||||
.
|
||||
{" "}
|
||||
</a>
|
||||
{visible && (
|
||||
<a href="#header" className={style["up-button"]}>
|
||||
{" "}
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React, { useState } from "react";
|
||||
import React, { useState, useEffect } from "react";
|
||||
import master from "../../assets/img/Master.svg";
|
||||
import visa from "../../assets/img/Visa.svg";
|
||||
import amex from "../../assets/img/Diners.svg";
|
||||
@ -23,6 +23,20 @@ interface AccordionStates {
|
||||
}
|
||||
|
||||
const FooterMobile = () => {
|
||||
const [visible, setVisible] = useState(false);
|
||||
useEffect(() => {
|
||||
const handleResize = () => {
|
||||
if (window.pageYOffset > 100) {
|
||||
setVisible(true);
|
||||
} else {
|
||||
setVisible(false);
|
||||
}
|
||||
};
|
||||
window.addEventListener("scroll", handleResize);
|
||||
return () => {
|
||||
window.removeEventListener("scroll", handleResize);
|
||||
};
|
||||
}, []);
|
||||
const [accordions, setAccordions] = useState<AccordionStates>({
|
||||
institucional: false,
|
||||
duvidas: false,
|
||||
@ -156,11 +170,13 @@ const FooterMobile = () => {
|
||||
className={style["button-whats"]}
|
||||
target="blank"
|
||||
href="https://wa.me/+55022997886109">
|
||||
.
|
||||
</a>
|
||||
<a href="#header-mobile" className={style["up-button"]}>
|
||||
.
|
||||
{" "}
|
||||
</a>
|
||||
{visible && (
|
||||
<a href="#header-mobile" className={style["up-button"]}>
|
||||
{" "}
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -169,6 +169,75 @@ p {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px) {
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.icons-top {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.icon-facebook {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.url-link {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
.float-buttons {
|
||||
right: 1%;
|
||||
}
|
||||
|
||||
.button-whats,
|
||||
.up-button {
|
||||
width: 66px;
|
||||
height: 66px;
|
||||
}
|
||||
|
||||
.footer-bottom p {
|
||||
font-size: 20px;
|
||||
line-height: 23px;
|
||||
}
|
||||
|
||||
.icons {
|
||||
width: 70px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.icon-vtex {
|
||||
width: 106px;
|
||||
height: 66px;
|
||||
}
|
||||
|
||||
.vtexP {
|
||||
width: 84px;
|
||||
height: 30px;
|
||||
margin: 0 12px;
|
||||
}
|
||||
|
||||
.m3 {
|
||||
width: 55px;
|
||||
height: 30px;
|
||||
margin-left: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.footer-top,
|
||||
.footer-bottom {
|
||||
|
@ -130,6 +130,7 @@ p {
|
||||
|
||||
.last-link {
|
||||
text-decoration: underline;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.float-buttons {
|
||||
|
@ -10,7 +10,7 @@ const Header = () => {
|
||||
<div>
|
||||
<div className={style["header-wrapper"]}>
|
||||
<div>
|
||||
<img src={logoM3} alt="logo M3" />
|
||||
<img className={style["logo-m3"]} src={logoM3} alt="logo M3" />
|
||||
</div>
|
||||
<div className={style["search-box"]}>
|
||||
<input
|
||||
|
@ -25,6 +25,11 @@ const HeaderMobile = () => {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
onClick={() => setOpen(false)}
|
||||
className={`${style["overlay"]} ${
|
||||
open ? style["overlay-active"] : ""
|
||||
}`}></div>
|
||||
|
||||
<div
|
||||
className={`${
|
||||
|
@ -6,9 +6,15 @@
|
||||
padding: 22px 100px;
|
||||
}
|
||||
|
||||
.logo-m3 {
|
||||
width: 136px;
|
||||
height: 26px;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background: #ffffff;
|
||||
border-radius: 5px;
|
||||
width: 100%;
|
||||
@ -101,6 +107,59 @@
|
||||
margin-right: 55px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px) {
|
||||
.logo-m3 {
|
||||
width: unset;
|
||||
height: unset;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
max-width: 516px;
|
||||
height: 57px;
|
||||
}
|
||||
|
||||
.input-search {
|
||||
height: 32px;
|
||||
margin: 12px 0 12px 16px;
|
||||
padding: 0;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
.input-search::placeholder {
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
.lupa-img {
|
||||
height: 35.15px;
|
||||
width: 35.15px;
|
||||
margin: 11px 11px 11px 10px;
|
||||
}
|
||||
|
||||
.button-login {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
.img-cart {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
|
||||
.cursos,
|
||||
.saiba-mais,
|
||||
.institucionais {
|
||||
font-weight: 500;
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.header {
|
||||
display: none;
|
||||
|
@ -86,18 +86,26 @@
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 4%;
|
||||
z-index: 2;
|
||||
transition: right 300ms ease-in-out;
|
||||
}
|
||||
|
||||
.menu-burguer-container-active::after {
|
||||
.overlay {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: rgba(69, 69, 69, 0.7);
|
||||
content: "";
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
transition: opacity 300ms linear;
|
||||
|
||||
&-active {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
.menu-burguer-buttons {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from "react";
|
||||
import style from "./newsletter.module.css";
|
||||
import style from "./newsletter.module.scss";
|
||||
|
||||
const Newsletter = () => {
|
||||
return (
|
||||
|
@ -67,6 +67,35 @@
|
||||
color: #c4c4c4;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px) {
|
||||
.newsletter-label {
|
||||
font-weight: 500;
|
||||
font-size: 36px;
|
||||
line-height: 42px;
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
width: 668px;
|
||||
}
|
||||
|
||||
.newsletter-wrapper input {
|
||||
max-width: 668px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.newsletter-wrapper input::placeholder {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
.button-submit {
|
||||
height: 60px;
|
||||
width: 246px;
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.newsletter-wrapper {
|
||||
padding: 16px;
|
@ -1,6 +1,7 @@
|
||||
import React from "react";
|
||||
import Header from "../components/Header/Header";
|
||||
import HeaderMobile from "../components/Header/HeaderMobile";
|
||||
import Body from "../components/Body/Body";
|
||||
import Newsletter from "../components/Newsletter/Newsletter";
|
||||
import Footer from "../components/Footer/Footer";
|
||||
import FooterMobile from "../components/Footer/FooterMobile";
|
||||
@ -12,7 +13,9 @@ const Home = () => {
|
||||
<Header />
|
||||
<HeaderMobile />
|
||||
</header>
|
||||
<main></main>
|
||||
<main>
|
||||
<Body />
|
||||
</main>
|
||||
<footer>
|
||||
<Newsletter />
|
||||
<Footer />
|
||||
|
30
desafio5/src/schema/FromSchema.ts
Normal file
30
desafio5/src/schema/FromSchema.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import * as Yup from "yup";
|
||||
|
||||
export default Yup.object().shape({
|
||||
name: Yup.string()
|
||||
.required("*Campo Obrigatório")
|
||||
.min(3, "Insira um nome válido"),
|
||||
email: Yup.string()
|
||||
.matches(
|
||||
/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/,
|
||||
"E-mail Inválido"
|
||||
)
|
||||
.required("*Campo Obrigatório"),
|
||||
cpf: Yup.string()
|
||||
.matches(/^(?:\d{3}\.){2}\d{3}-?\d{2}$/, "CPF inválido")
|
||||
.required("*Campo obrigatório"),
|
||||
nascimento: Yup.string()
|
||||
.matches(
|
||||
/^(?:0[1-9]|[12]\d|3[01])([/.-])(?:0[1-9]|1[012])\1(?:19|20)\d\d$/,
|
||||
"Data de Nascimento inválida"
|
||||
)
|
||||
.required("*Campo Obrigatório"),
|
||||
telefone: Yup.string()
|
||||
.matches(/^(\d{2})\D*(\d{5}|\d{4})\D*(\d{4})$/, "Número Inválido")
|
||||
.required("*Campo Obrigatório"),
|
||||
instagram: Yup.string().matches(
|
||||
/(?:@)(\w(?:(?:\w|(?:\.(?!\.))){0,28}(?:\w))?)/,
|
||||
"Nome de usuário não é valido"
|
||||
),
|
||||
terms: Yup.boolean().oneOf([true], "você deve aceitar os termos").required(),
|
||||
});
|
9732
desafio5/yarn.lock
Normal file
9732
desafio5/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user