generated from FGA0138-MDS-Ajax/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aefb491
commit a157ac4
Showing
1 changed file
with
86 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,86 @@ | ||
# Welcome to MkDocs | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
|
||
## Commands | ||
|
||
* `mkdocs new [dir-name]` - Create a new project. | ||
* `mkdocs serve` - Start the live-reloading docs server. | ||
* `mkdocs build` - Build the documentation site. | ||
* `mkdocs -h` - Print help message and exit. | ||
|
||
## Project layout | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. | ||
# BeSong | ||
O projeto BeSong é uma plataforma dedicada à conexão de artistas | ||
do ramo da música e pessoas que desejam contratar seus serviços. | ||
|
||
<!DOCTYPE html> | ||
<html lang="pt-BR"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Equipe</title> | ||
<style> | ||
.team { | ||
display: flex; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
gap: 20px; | ||
padding: 20px; | ||
} | ||
.member img { | ||
border-radius: 50%; | ||
width: 150px; | ||
height: 150px; | ||
transition: transform 0.2s; | ||
} | ||
.member img:hover { | ||
transform: scale(1.1); | ||
} | ||
.member { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Conheça a Equipe</h1> | ||
<div class="team"> | ||
<div class="member"> | ||
<a href="https://github.com/Brenno-Silva01" target="_blank"> | ||
<img src="https://github.com/Brenno-Silva01.png" alt="Brenno da Silva"> | ||
</a> | ||
<h2>Brenno da Silva</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/dcasseb" target="_blank"> | ||
<img src="https://github.com/dcasseb.png" alt="Davi Araújo"> | ||
</a> | ||
<h2>Davi Araújo</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/fernoronhacoelho" target="_blank"> | ||
<img src="https://github.com/fernoronhacoelho.png" alt="Fernanda Noronha"> | ||
</a> | ||
<h2>Fernanda Noronha</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/verissimoo" target="_blank"> | ||
<img src="https://github.com/verissimoo.png" alt="Felipe Veríssimo"> | ||
</a> | ||
<h2>Felipe Verissimo</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/henryqma" target="_blank"> | ||
<img src="https://github.com/henryqma.png" alt="Henrique Alencar"> | ||
</a> | ||
<h2>Henrique Alencar</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/paolaalim" target="_blank"> | ||
<img src="https://github.com/paolaalim.png" alt="Paola Nascimento"> | ||
</a> | ||
<h2>Paola Nascimento</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/andreozzi" target="_blank"> | ||
<img src="https://github.com/andreozzi.png" alt="Victor Andreozzi"> | ||
</a> | ||
<h2>Victor Andreozzi</h2> | ||
</div> | ||
<div class="member"> | ||
<a href="https://github.com/yuri221022210" target="_blank"> | ||
<img src="https://github.com/yuri221022210.png" alt="Yuri Otor"> | ||
</a> | ||
<h2>Yuri Otor</h2> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |