end of night

This commit is contained in:
2026-03-10 20:19:24 +08:00
parent 2c23322841
commit 896f7e41a6
8 changed files with 694 additions and 42 deletions

View File

@@ -13,9 +13,9 @@
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<nav class="navbar narbar-expand-lg">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="#">
<a class="navbar-brand" href="./index.html">
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
</a>
@@ -32,24 +32,68 @@
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<ul class="navbar-nav ms-auto text-end">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link active" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
<a class="nav-link" href="./features.html">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
<a class="nav-link" href="./pricing.html">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">Disabled</a>
<a class="nav-link" href="./support.html">Support</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ↓ Page not ready ↓ -->
<section class="bg-img d-flex justify-content-center align-items-center support py-5">
<div class="container text-center text-white py-5">
<img src="./images/Construction.svg" alt="Under Construction" height="150px" width="auto" />
<h2 class="mt-5">Page under construction. Check back later!</h2>
<div class="mt-5">
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
</div>
</div>
</section>
<!-- ↑ Page not ready ↑ -->
<!-- ↓ Footer ↓ -->
<footer>
<div class="py-5 container">
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
<a href="./index.html">
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
</a>
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
<h3 class="text-white mb-3 text-center text-md-start">Subscribe to our Newsletter</h3>
<div class="input-group">
<input placeholder="Enter your email" type="email" class="form-control" />
<button class="btn btn-primary">Subscribe</button>
</div>
</div>
</div>
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
<a class="nav-link" href="#">Privacy Policy</a>
<p class="m-0 d-none d-md-block">|</p>
<a class="nav-link" href="#">Terms of Service</a>
<p class="mb-0 me-3 d-none d-md-block">|</p>
<p class="m-0">ListMe &COPY; 2025 All Rights Reserved</p>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"