base project

This commit is contained in:
2025-05-02 15:42:14 +02:00
commit ea2b94bf65
3682 changed files with 392213 additions and 0 deletions

28
src/features.html Normal file
View File

@@ -0,0 +1,28 @@
<!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>