67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Page d'accueil - Smart Building</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script
|
|
src="https://kit.fontawesome.com/a076d05399.js"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<%- include('partials/header') %>
|
|
|
|
<main>
|
|
<section class="left-panel">
|
|
<img src="/images/batiment.png" alt="Bâtiment" />
|
|
</section>
|
|
|
|
<section class="right-panel">
|
|
<h1>Accueil</h1>
|
|
<div class="features">
|
|
<a href="/objets" style="text-decoration: none">
|
|
<div class="feature">
|
|
<div class="circle">
|
|
<i class="fas fa-cogs"></i>
|
|
</div>
|
|
<p>Objets connectés</p>
|
|
</div>
|
|
</a>
|
|
<a href="/membres" style="text-decoration: none">
|
|
<div class="feature">
|
|
<div class="circle">
|
|
<i class="fas fa-users"></i>
|
|
</div>
|
|
<p>Membres</p>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="/ressources" class="text-decoration: none">
|
|
<div class="feature">
|
|
<div class="circle">
|
|
<i class="fas fa-map-marker-alt"></i>
|
|
</div>
|
|
<p>Ressources</p>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="/description" class="feature">
|
|
<div class="circle">
|
|
<i class="fas fa-building"></i>
|
|
</div>
|
|
<p>Description bâtiment</p>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<%- include('partials/footer') %>
|
|
</body>
|
|
</html> |