-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
30 lines (25 loc) · 1.47 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php include 'components/head.php'; ?>
<?php include 'redirect.php'; ?>
<?php include 'components/navbar.php'; ?>
<body style="height: 100vh" class="grey darken-4">
<main>
<h2 class="brand-logo center white-text" style="font-size: 40px; font-weight: bolder;">Sobre o projeto</h2>
<br>
<div class="container">
<p class="white-text">O projeto visa ajudar novos programadores a desenvolver seus projetos usando banco de dados. Existem outras opções melhores/mais funcionais, tal como phpMyAdmin. Porém, nesse projeto, o principal foco é a facilidade de uso, tornando a experiência mais agradável a quem está utilizando da ferramenta.</p>
<h5 class="white-text">Contato</h5>
<p class="white-text">hello@devdavi.com.br</p>
<h5 class="white-text">Créditos</h5>
<p class="white-text">Built with <a href="http://www.materializecss.com">MaterializeCSS</a></p>
<p class="white-text">Syntax highlighting by <a href="https://ace.c9.io/">Ace</a></p>
<p class="white-text">PHP SQL dump by <a href="https://github.com/ifsnop/mysqldump-php">Mysqldump</a></p>
<br><br>
<div class="container">
<p class="left" style="color: white; font-size: 20px"><i class="material-icons small left prefix">lock_open</i>Open source</p>
<img src="img/devdavi.png" class="tooltipped right devdavi-logo" data-position="top" data-tooltip="Desenvolvedor">
</div>
</div>
</main>
</body>
</html>
<?php include 'components/js.php'; ?>