-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sommaire</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="antialiased text-[#eee8d5] dark:text-slate-400 bg-[#002b36]">
<div class="max-w-7xl mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<div class="flex space-x-4">
<!-- Logo -->
<div>
<a href="index.html" class="text-white text-xl font-bold">CodisArt</a>
</div>
<!-- Navigation Links -->
<nav class="flex space-x-4">
<a class="text-white hover:text-gray-300" href="blog/index.html">Blog</a>
<a class="text-white hover:text-gray-300" href="presentations/index.html">Présentations</a>
</nav>
</div>
<!-- Mobile Menu Button (Hidden on Desktop) -->
<div class="md:hidden">
<button class="text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Your content goes here -->
</body>
</html>