www_circl/src/features.html
2025-05-02 15:42:14 +02:00

29 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - Dark Mode Website</title>
<link href="../dist/output.css" rel="stylesheet">
</head>
<body class="min-h-screen bg-black">
<div class="container mx-auto px-4 py-8">
<nav class="flex items-center justify-between mb-8">
<div class="flex items-center">
<img src="assets/logos/logo_lightmode.svg" alt="Logo" class="h-6 md:h-5 lg:h-6 w-auto mr-4">
</div>
<ul class="flex space-x-6 text-white">
<li><a href="index.html" class="hover:text-gray-300">Home</a></li>
<li><a href="about.html" class="hover:text-gray-300">About</a></li>
<li><a href="features.html" class="hover:text-gray-300">Features</a></li>
<li><a href="contact.html" class="hover:text-gray-300">Contact</a></li>
</ul>
</nav>
<header class="text-center mb-12">
<h1 class="text-4xl font-bold text-white mb-4">Features</h1>
</header>
</div>
</body>
</html>