nebulosus website upgrade

This commit is contained in:
Robin-qwerty 2024-04-09 15:29:00 +02:00
parent 818d78413b
commit 6ea8f49b3f
9 changed files with 486 additions and 182 deletions

View file

@ -1,21 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nebulosus</title>
<link rel="icon" href="./res/media/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./res/style/style.css">
<script src="./res/script/cases.js" defer></script>
<script src="./res/script/anchors.js" defer></script>
<script src="./res/script/navbar.js" defer></script>
<link rel="stylesheet" href="./res/style.css">
<script src="./res/cases.js" defer></script>
<script src="./res/anchors.js" defer></script>
</head>
<body>
<header style="display: flex; justify-content: space-between;">
<div class="top-bar">
<div class="logo">
<span class="mono">[N]</span>
<a href="./">
<span class="mono">[N]</span>
</a>
</div>
</header>
<nav>
<div class="hamburger-menu" onclick="toggleMenu()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<ul>
<li><a href="#intro"onclick="hideMenu()">Home</a></li>
<li><a href="./res/pricing/" onclick="hideMenu()">Pricing</a></li>
<li><a href="#about" onclick="hideMenu()">About</a></li>
<li><a href="#contact" onclick="hideMenu()">Contact</a></li>
</ul>
</nav>
</div>
<main>
<section id="intro">
<h1>Nebulosus</h1>
@ -42,6 +64,13 @@
If you want simple, intuitive and reliable software, you're in the right spot.
</p>
</section>
<section id="more-info">
<h2>More information about Nebulosus</h2>
<div class="rows">
<span>Chamber of Commerce number: <strong>93409583</strong></span>
<span>E-mail: <strong>info@nebulosus.nl</strong></span>
</div>
</section>
</div>
<section id="contact" hidden>
<!-- Not done yet :) -->
@ -56,14 +85,7 @@
</form>
</section>
</div>
<section id="more-info">
<h2>More information about Nebulosus</h2>
<div class="rows">
<span>Chamber of Commerce number: <strong>93409583</strong></span>
<span>E-mail: <strong>info@nebulosus.nl</strong></span>
</div>
</section>
</main>
</body>
</html>
</html>