Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
524e5ce
starting base project
andrelucca99 Mar 22, 2024
2f17128
refactor: update directories the project
andrelucca99 Mar 22, 2024
f341e95
feat: Add the initial home page layout
RenanFernandess Mar 30, 2024
0f28eb5
style: add font do texto
andrelucca99 Apr 1, 2024
5b8b90a
feat: add component header
andrelucca99 Apr 1, 2024
bedce76
feat: add component card
andrelucca99 Apr 1, 2024
49a3a35
feat: add component modal
andrelucca99 Apr 1, 2024
3135a88
feat: Adds StudentCard and SealCard components
RenanFernandess Apr 1, 2024
2f1fbda
feat: Add the first version of the database
RenanFernandess Apr 1, 2024
6231769
feat: Add container style
RenanFernandess Apr 1, 2024
bbfe1f0
feat: Renders highlights and badges with data from the database
RenanFernandess Apr 1, 2024
46d6eae
Merge pull request #2 from andrelucca99/components-do-projetos
andrelucca99 Apr 2, 2024
29527a8
fix: Resolves conflicts
RenanFernandess Apr 2, 2024
33b9ee5
Merge pull request #3 from andrelucca99/home-page
RenanFernandess Apr 3, 2024
80f029a
feat: Change the format of tables and add essential stamps
RenanFernandess Apr 3, 2024
3eda0f0
feat: Makes the carousel play the highlights every 5 seconds
RenanFernandess Apr 3, 2024
77a2375
fix: Fix the data keys to the new format
RenanFernandess Apr 3, 2024
c6c00d3
feat: configure project routes
RenanFernandess Apr 3, 2024
2590cb3
Merge pull request #4 from andrelucca99/home-page-finished
delso-ferreira Apr 3, 2024
7544310
style: ajustes no resposivo do banner da página
andrelucca99 Apr 4, 2024
f67f8d0
style: ajuste no resposivo do template HomeHighlights
andrelucca99 Apr 4, 2024
d0c78db
style: ajuste no responsivo da seção destacam
andrelucca99 Apr 4, 2024
7c43af5
feat: add icones no banner
andrelucca99 Apr 4, 2024
1b7afc5
Merge branch 'main' of github.com:andrelucca99/dev-na-pratica-01 into…
RenanFernandess Apr 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@trybe/eslint-config-frontend/typescript"
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ Os projetos serão avaliados de forma justa e imparcial, levando em consideraç

**Observação:** O fork do repositório é importante para que vocês consigam configurar o github pages com a branch da solução e assim conseguirem validar o site no github pages.


16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading