From 6a4163b914c0e0193ce45ec4f3ed6727ef762904 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Mon, 18 Sep 2023 01:37:01 -0300 Subject: [PATCH 1/2] feat: create structure --- pages/index.tsx | 2 + src/components/Depoiments/Arrows/index.tsx | 27 ++++++++++ src/components/Depoiments/Card/index.tsx | 45 ++++++++++++++++ src/components/Depoiments/Depoiments.data.ts | 43 ++++++++++++++++ src/components/Depoiments/Depoiments.spec.tsx | 0 src/components/Depoiments/context.tsx | 51 +++++++++++++++++++ src/components/Depoiments/index.tsx | 22 ++++++++ src/components/Title/index.tsx | 19 +++++-- 8 files changed, 204 insertions(+), 5 deletions(-) create mode 100644 src/components/Depoiments/Arrows/index.tsx create mode 100644 src/components/Depoiments/Card/index.tsx create mode 100644 src/components/Depoiments/Depoiments.data.ts create mode 100644 src/components/Depoiments/Depoiments.spec.tsx create mode 100644 src/components/Depoiments/context.tsx create mode 100644 src/components/Depoiments/index.tsx diff --git a/pages/index.tsx b/pages/index.tsx index 5717122..b622bc6 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -5,6 +5,7 @@ import SectionProviders from '~/src/components/SectionProviders' import SectionApps from '~/src/components/SectionApps' import Articles from '~/src/components/Articles' import Footer from '~/src/components/Footer' +import Depoiments from '~/src/components/Depoiments' const Home = () => { return ( @@ -14,6 +15,7 @@ const Home = () => { +