diff --git a/index.html b/index.html
index 8debcef..b5a5c6b 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,5 @@
-
+
diff --git a/public/index.html b/public/index.html
index 21d87fb..c5be80b 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,5 +1,5 @@
-
+
diff --git a/src/components/layouts/LandingLayout.tsx b/src/components/layouts/LandingLayout.tsx
index 1595571..abb0e2b 100644
--- a/src/components/layouts/LandingLayout.tsx
+++ b/src/components/layouts/LandingLayout.tsx
@@ -11,7 +11,7 @@ export default function LandingLayout({ children }: Props) {
return (
-
+
{children}
diff --git a/src/components/sections/Footer.tsx b/src/components/sections/Footer.tsx
index 6022549..2133dca 100644
--- a/src/components/sections/Footer.tsx
+++ b/src/components/sections/Footer.tsx
@@ -2,14 +2,15 @@ import { Box, Text, Link } from "@chakra-ui/react";
export default function Footer() {
return (
-
-
+
+
Idealizado por{" "}
diff --git a/src/components/sections/Header.tsx b/src/components/sections/Header.tsx
index 192848b..1f31f21 100644
--- a/src/components/sections/Header.tsx
+++ b/src/components/sections/Header.tsx
@@ -9,6 +9,8 @@ import {
Spacer,
Text,
Button,
+ List,
+ ListItem,
Link as ChakraLink,
useMediaQuery,
useDisclosure,
@@ -52,7 +54,7 @@ export default function Header() {
return (
<>
-
+
@@ -67,42 +69,52 @@ export default function Header() {
{isLargerThanLg && (
<>
-
- {links.map((link) => (
-
+
+ {links.map((link) => (
+
+
+ {link.label}
+
+
+ ))}
+
+
+
+
+
+
+
- {link.label}
-
- ))}
-
-
-
-
- GitHub
-
-
- Discord
-
+ GitHub
+
+
+
+
+ Discord
+
+
+
{/*
-
+
- {links.map((link) => (
-
- {link.label}
-
- ))}
-
-
- GitHub
-
+
+ {links.map((link) => (
+
+
+ {link.label}
+
+
+ ))}
-
- Discord
-
+
+
+ GitHub
+
+
+
+
+ Discord
+
+
+
diff --git a/src/components/sections/SkeletonListCard.tsx b/src/components/sections/SkeletonListCard.tsx
index 712ee30..7176723 100644
--- a/src/components/sections/SkeletonListCard.tsx
+++ b/src/components/sections/SkeletonListCard.tsx
@@ -9,7 +9,7 @@ import {
export const SkeletonListCard = () => {
return (
-
+
{[...new Array(8)].map((_el, index) => (
{
overflowY="clip"
textOverflow="ellipsis"
bgColor="whiteAlpha.100"
+ as="article"
>
diff --git a/src/pages/About.tsx b/src/pages/About.tsx
index 112ce02..5083e73 100644
--- a/src/pages/About.tsx
+++ b/src/pages/About.tsx
@@ -18,6 +18,7 @@ import LandingLayout from "../components/layouts/LandingLayout";
export default function About() {
return (
+
Sobre
Saiba mais sobre o projeto!
@@ -133,6 +134,7 @@ export default function About() {
+
);
}