add initial website structure

This commit is contained in:
Vxrtrauter
2026-03-23 21:36:21 +01:00
parent d4b7067484
commit 5fe3502bd6
10 changed files with 591 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css"/>
<title>SoftwareManager - About</title>
<!-- <link rel="icon" type="image/x-icon" href="/assets/icons/favicon.ico"> -->
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">logo<img src=""></div>
<nav>
<a href="/" class="btn">Home</a>
<a href="/api" class="btn">API</a>
<a href="/about" class="btn active">About</a>
</nav>
</header>
<main>
<h1 class="title"><span style="color: #db65d5">About us</span></h1>
<br>
<p>Simplify searching & downloading</p>
</main>
<footer>
<small>KeksPirates - SoftwareManager</small>
</footer>
</body>
</html>