Skip to content

Commit

Permalink
Atualizando index
Browse files Browse the repository at this point in the history
  • Loading branch information
Brenno-Silva01 committed Jun 3, 2024
1 parent aefb491 commit a157ac4
Showing 1 changed file with 86 additions and 17 deletions.
103 changes: 86 additions & 17 deletions docs/index.md
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>

0 comments on commit a157ac4

Please sign in to comment.