-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (30 loc) · 1015 Bytes
/
404.html
File metadata and controls
32 lines (30 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alilo SCOP, activateur de circuits courts</title>
<link href="/output.css" rel="stylesheet" />
<link rel="shortcut icon" href="/alilo-favicon.png" />
</head>
<body class="bg-white text-slate-800">
<!-- Header with Logo -->
<header class="container mx-auto px-4 py-6">
<div class="flex items-baseline">
<img src="/logo.png" alt="ALILO SCOP" class="h-24 w-auto" />
</div>
</header>
<div class="container mx-auto px-4 py-6 text-xl text-slate-400">
<h2 class="mb-2">Erreur 404</h2>
<p>La page que vous recherchez n'existe pas ou a été supprimée.</p>
</div>
<div class="container mx-auto px-4 py-6">
<a
href="/"
class="bg-slate-500 text-white px-4 py-2 rounded hover:bg-slate-600"
>
Revenir à la page d'accueil
</a>
</div>
</body>
</html>