From df4dc23ecba336202db3554723e685155f90b13a Mon Sep 17 00:00:00 2001
From: Mario Souto <13791385+omariosouto@users.noreply.github.com>
Date: Sat, 24 Feb 2024 12:57:47 -0300
Subject: [PATCH] update
---
_data/locale/pt-BR.ts | 1 +
.../assets/image/home-illustration-three.svg | 1587 +++++++++++++++++
src/patterns/Menu/index.tsx | 2 +-
src/patterns/ScreenHeroContainer/index.tsx | 2 +
.../ThirdContentSection.tsx | 117 ++
5 files changed, 1708 insertions(+), 1 deletion(-)
create mode 100644 public/assets/image/home-illustration-three.svg
create mode 100644 src/patterns/ScreenHeroContainer/patterns/ThirdContentSection/ThirdContentSection.tsx
diff --git a/_data/locale/pt-BR.ts b/_data/locale/pt-BR.ts
index c516403b0..2727cbdda 100644
--- a/_data/locale/pt-BR.ts
+++ b/_data/locale/pt-BR.ts
@@ -122,6 +122,7 @@ export default {
},
],
"IMAGES.DISCOVER_IMAGE": "/assets/image/discover-illustration.svg",
+ "IMAGES.7DAYSOFCODE": "/assets/image/home-illustration-three.svg",
"FOOTER.YOUTUBE": "https://youtube.com/aluracursosonline",
"FOOTER.FACEBOOK": "https://www.facebook.com/AluraCursosOnline/",
"FOOTER.INSTAGRAM": "https://www.instagram.com/aluraonline/",
diff --git a/public/assets/image/home-illustration-three.svg b/public/assets/image/home-illustration-three.svg
new file mode 100644
index 000000000..e47cb40d6
--- /dev/null
+++ b/public/assets/image/home-illustration-three.svg
@@ -0,0 +1,1587 @@
+
+
\ No newline at end of file
diff --git a/src/patterns/Menu/index.tsx b/src/patterns/Menu/index.tsx
index 7e18cc88d..8fea2d717 100644
--- a/src/patterns/Menu/index.tsx
+++ b/src/patterns/Menu/index.tsx
@@ -39,7 +39,7 @@ export default function Menu() {
src="https://ghbtns.com/github-btn.html?user=alura&repo=techguide&type=star&count=true"
frameBorder="0"
scrolling="0"
- width="101"
+ width="110"
height="30"
title="GitHub"
/>
diff --git a/src/patterns/ScreenHeroContainer/index.tsx b/src/patterns/ScreenHeroContainer/index.tsx
index 1f99d4304..5b320ee95 100644
--- a/src/patterns/ScreenHeroContainer/index.tsx
+++ b/src/patterns/ScreenHeroContainer/index.tsx
@@ -8,6 +8,7 @@ import FAQContentSection from "./patterns/FAQContentSection";
import HeroTitle from "./patterns/HeroTitle";
import { PathScreenGetGuideBySlugQuery } from "@src/gql_types";
import { LanguageSwitch } from "./patterns/LanguageSwitch/LanguageSwitch";
+import { ThirdContentSection } from "./patterns/ThirdContentSection/ThirdContentSection";
interface ScreenHeroContainerProps {
guide?: PathScreenGetGuideBySlugQuery["guide"];
@@ -103,6 +104,7 @@ export default function ScreenHeroContainer({
+
>
diff --git a/src/patterns/ScreenHeroContainer/patterns/ThirdContentSection/ThirdContentSection.tsx b/src/patterns/ScreenHeroContainer/patterns/ThirdContentSection/ThirdContentSection.tsx
new file mode 100644
index 000000000..0c458e68a
--- /dev/null
+++ b/src/patterns/ScreenHeroContainer/patterns/ThirdContentSection/ThirdContentSection.tsx
@@ -0,0 +1,117 @@
+import React from "react";
+import { Box, Image, Link, Text } from "@src/components";
+import { useI18n } from "@src/infra/i18n";
+
+export function ThirdContentSection() {
+ const i18n = useI18n();
+ return (
+
+
+
+
+
+
+ Desafie-se
+
+
+ Coloque em prática os seus conhecimentos em{" "}
+ desafios diários
+
+
+ Sete desafios. Na tecnologia que você está aprendendo. Pratique,
+ estude e mostre seu portfolio.
+
+
+ Pratique agora
+
+
+
+ );
+}