From 66eea80036352b260209fe03fb1f76202dbb625a Mon Sep 17 00:00:00 2001 From: eduardor2m Date: Tue, 1 Feb 2022 09:58:14 -0300 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20I=20downloaded=20the=20=C3=A7u?= =?UTF-8?q?=C3=A7=20logos=20and=20styled=20the=20contact=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Contact.tsx | 115 +++++++++++++++++++++++++++++++++ src/images/iluminationLogo.svg | 43 ++++++++++++ src/images/logo3D.svg | 56 ++++++++++++++++ src/pages/index.tsx | 2 + 4 files changed, 216 insertions(+) create mode 100644 src/components/Contact.tsx create mode 100644 src/images/iluminationLogo.svg create mode 100644 src/images/logo3D.svg diff --git a/src/components/Contact.tsx b/src/components/Contact.tsx new file mode 100644 index 0000000..93bb786 --- /dev/null +++ b/src/components/Contact.tsx @@ -0,0 +1,115 @@ +/* eslint-disable arrow-body-style */ +/* eslint-disable react/function-component-definition */ +import React from 'react'; +import { Box, Button, Image, Input, Text } from '@chakra-ui/react'; + +import iluminationLogo from '../images/iluminationLogo.svg'; +import logo3D from '../images/logo3D.svg'; + +const Contact: React.FC = () => { + return ( + + + + + + + Bora! + + + Entre em contato
conosco +
+
+ + + + +
+ + + +
+
+ ); +}; + +export default Contact; diff --git a/src/images/iluminationLogo.svg b/src/images/iluminationLogo.svg new file mode 100644 index 0000000..b0a0831 --- /dev/null +++ b/src/images/iluminationLogo.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/logo3D.svg b/src/images/logo3D.svg new file mode 100644 index 0000000..331ffd8 --- /dev/null +++ b/src/images/logo3D.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 3f82159..6e13c7e 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -3,6 +3,7 @@ import { Box } from '@chakra-ui/react'; import Navibar from '../components/Navibar'; import VslSection from '../components/VslSection'; import Technologies from '../components/Technologies'; +import Contact from '../components/Contact'; function IndexPage() { return ( @@ -10,6 +11,7 @@ function IndexPage() { + ); } From db9651c7c12113fa9feac13ff4dbbfd95132fc7d Mon Sep 17 00:00:00 2001 From: eduardor2m Date: Tue, 1 Feb 2022 11:09:12 -0300 Subject: [PATCH 2/2] feat: linear-gradient --- src/components/Contact.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/Contact.tsx b/src/components/Contact.tsx index 93bb786..1aa3516 100644 --- a/src/components/Contact.tsx +++ b/src/components/Contact.tsx @@ -11,11 +11,7 @@ const Contact: React.FC = () => {