diff --git a/src/App.js b/src/App.js
index 5d71d15..a8a3580 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,6 +1,7 @@
import { useState } from 'react';
import Banner from './componentes/Banner/banner';
import Form from './componentes/form/form'
+import Time from './componentes/Time/time';
function App() {
@@ -11,10 +12,55 @@ function App() {
setColaboradores ([...colaboradores,colaborador])
}
+ const times = [
+ {
+ nome: 'Programação',
+ corPrimaria: '#57C278',
+ corSecundaria: '#D9F7E9',
+ },
+ {
+ nome: 'Front-End',
+ corPrimaria: '#82CFFA',
+ corSecundaria: '#E8F8FF',
+ },
+ {
+ nome: 'Back-End',
+ corPrimaria: '#ffc26c',
+ corSecundaria: '#fff0da',
+ },
+ {
+ nome: 'Data Sciense',
+ corPrimaria: '#A6D157',
+ corSecundaria: '#F0F8E2',
+ },
+ {
+ nome: 'Devops',
+ corPrimaria: '#E06B69',
+ corSecundaria: '#FDE7E8',
+ },
+ {
+ nome: 'UX e Design',
+ corPrimaria: '#D86EBF',
+ corSecundaria: '#FAE5F5',
+ },
+ {
+ nome: 'Mobile',
+ corPrimaria: '#FEBA05',
+ corSecundaria: '#FFF5D9',
+ },
+ {
+ nome: 'Inovação e Gestão',
+ corPrimaria: '#FF8A29',
+ corSecundaria: '#FFEEDF',
+ }
+
+ ]
+
return (
-
);
}
diff --git a/src/componentes/Time/time.css b/src/componentes/Time/time.css
new file mode 100644
index 0000000..923999d
--- /dev/null
+++ b/src/componentes/Time/time.css
@@ -0,0 +1,18 @@
+.time {
+ text-align: center;
+ padding: 32px;
+}
+
+.time h3 {
+ font-size: 32px;
+ border-bottom: 4px solid;
+ display: inline-block;
+ padding-bottom: 8px;
+}
+
+.time.colaboradores {
+ display: flex;
+ justify-content: space-around;
+ margin-top: 32px;
+ flex-wrap: wrap;
+}
\ No newline at end of file
diff --git a/src/componentes/Time/time.js b/src/componentes/Time/time.js
new file mode 100644
index 0000000..4b4c257
--- /dev/null
+++ b/src/componentes/Time/time.js
@@ -0,0 +1,14 @@
+import './time.css'
+
+const Time = (props) => {
+
+ const css = {backgroundColor:props.corSecundaria}
+
+ return(
+
+ )
+}
+
+export default Time
\ No newline at end of file
diff --git a/src/componentes/form/form.js b/src/componentes/form/form.js
index 7c1f174..0773caa 100644
--- a/src/componentes/form/form.js
+++ b/src/componentes/form/form.js
@@ -6,14 +6,6 @@ import { useState } from "react";
const Formulario = (props) => {
- const times = ['Programação',
- 'Front-End',
- 'Data Science',
- 'Devops',
- 'UX e Design',
- 'Mobile',
- 'Inovação e Gestão']
-
const [nome, setNome] = useState('')
const [cargo, setCargo] = useState('')
const [imagem, setImagem] = useState('')
@@ -56,7 +48,7 @@ const Formulario = (props) => {
setTime(valor)}
/>