-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
53 lines (47 loc) · 1.54 KB
/
home.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
echo $_SESSION['x'];
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/home.css">
<title>Help Desk App</title>
</head>
<body>
<header>
<h1>Help Desk App</h1>
<nav>
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Tickets</a></li>
<li><a href="#">Soluções</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Bem-vindo ao Help Desk App</h2>
<p>Resolva seus problemas de suporte de forma eficaz.</p>
<a href="#" class="cta-button">Crie um Ticket</a>
</section>
<section class="features">
<div class="feature">
<h3>Atendimento Rápido</h3>
<p>Nossa equipe está pronta para atender suas solicitações com rapidez e eficiência.</p>
</div>
<div class="feature">
<h3>Base de Conhecimento</h3>
<p>Explore nossa extensa base de conhecimento para encontrar respostas para suas perguntas comuns.</p>
</div>
<div class="feature">
<h3>Suporte 24/7</h3>
<p>Estamos disponíveis 24 horas por dia, 7 dias por semana, para atender às suas necessidades de suporte.</p>
</div>
</section>
<footer>
<p>© 2023 Help Desk App. Todos os direitos reservados.</p>
</footer>
</body>
</html>