diff --git a/README.md b/README.md
index f6c062f..4a86fd4 100644
--- a/README.md
+++ b/README.md
@@ -78,7 +78,8 @@ And that's it! Your `SkateHub Frontend` should now be up and running locally on
### 2024
-- 2024-03-26 - Create the sidebar provider and components to handle with the desktop and mobile menu [#3](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/3) _(v0.1.2)_
+- 2024-03-26 - Create the home page of the SkateHub project [#4](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/4) _(v0.1.3)_
+- 2024-03-26 - Create the sidebar provider and components to handle with the aside menu [#3](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/3) _(v0.1.2)_
- 2024-03-24 - Add [Chakra UI](https://chakra-ui.com/) to handle with the user interface [#2](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/2) _(v0.1.1)_
- 2024-03-19 - Add a quick guide to getting started with the application [#1](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/1) _(v0.1.0)_
diff --git a/package.json b/package.json
index be47dac..654c59c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "frontend",
- "version": "0.1.2",
+ "version": "0.1.3",
"private": true,
"scripts": {
"dev": "next dev",
diff --git a/public/alexander-londono-unsplash.jpeg b/public/alexander-londono-unsplash.jpeg
new file mode 100644
index 0000000..9363ab9
Binary files /dev/null and b/public/alexander-londono-unsplash.jpeg differ
diff --git a/src/components/LogoSkateHub/index.tsx b/src/components/LogoSkateHub/index.tsx
new file mode 100644
index 0000000..7019478
--- /dev/null
+++ b/src/components/LogoSkateHub/index.tsx
@@ -0,0 +1,30 @@
+interface LogoSkateHubProps {
+ showLogoData?: boolean;
+}
+
+export function LogoSkateHub({ showLogoData = true }: LogoSkateHubProps) {
+ return (
+
+ );
+}
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index dcd9a5e..3ccea96 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,5 +1,137 @@
-import { Text } from '@chakra-ui/react'
+import { useRouter } from 'next/router'
+import { LogoSkateHub } from '@/components/LogoSkateHub'
+import { Button, Flex, Grid, GridItem, Stack, Text } from '@chakra-ui/react'
export default function Home() {
- return Hello World
+ const router = useRouter()
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+ Seja bem-vindo ao SkateHub
+
+
+ Junte-se à comunidade e faça parte da evolução do esporte.
+
+
+ Faça login ou cadastre-se para começar a explorar todas as
+ funcionalidades!
+
+
+
+
+
+
+
+
+
+ Termos de uso
+
+
+ |
+
+
+ Política de privacidade
+
+
+
+
+
+ >
+ )
}