Skip to content

Commit

Permalink
feature: improve UI
Browse files Browse the repository at this point in the history
  • Loading branch information
wilcorrea committed Apr 8, 2024
1 parent 6d9b0b0 commit e3dfbb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Super Quiz
# Super Quizz

O Super Quiz é um projeto que permite que sejam inseridos jogos de forma simples e rápida em backend e que o mesmo alimente de forma eficiente um frontend.
O Super Quizz é um projeto que permite que sejam inseridos jogos de forma simples e rápida em backend e que o mesmo alimente de forma eficiente um frontend.


## Tecnologias
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Super Quiz</title>
<title>Super Quizz</title>
<link
rel="stylesheet"
href="/assets/style/bootswatch/quartz.min.css"
Expand Down
10 changes: 4 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ export default function App () {
return (
<AppProvider>
<Routes>
<Route element={<Layout />}>
<Route
path="/"
element={<Layout />}
>
<Route
index
element={<HomePage />}
Expand All @@ -40,11 +43,6 @@ export default function App () {
path="/game/:id/end"
element={<GameEndPage />}
/>
<Route
path="/"
element={<HomePage />}
>
</Route>
<Route
path="/sign-in"
element={<SignInPage />}
Expand Down
4 changes: 2 additions & 2 deletions src/config/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ const resources = {
default: {
layouts: {
root: {
brand: 'Quiz',
brand: 'Super Quizzz',
play: 'Jogar',
signIn: 'Entrar'
}
},
pages: {
home: {
title: 'Quiz',
title: 'Super Quizz',
description: 'O melhor jogo de perguntas e respostas para jogar com os amigos!\n' +
'Reúna sua galera e divirta-se com moderação! 🍻',
contributing: 'Não se esqueça de contribuir com o projeto no link abaixo! 😉',
Expand Down

0 comments on commit e3dfbb6

Please sign in to comment.