(feat): Init concept of coming soon landing page

This commit is contained in:
Blake Ridgway 2025-01-05 21:03:42 -06:00
parent 18bcafe29b
commit f8f8c773cc
9 changed files with 179 additions and 77 deletions

View file

@ -3,22 +3,18 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RideAware - Coming Soon</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/static/styles.css">
<title>RideAware Landing Page</title>
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<div class="container">
<h1 class="display-4 fw-bold">RideAware</h1>
<p class="lead">Our journey begins soon.</p>
<!--<p class="mb-4">Sign up to stay updated!</p>
<form action="#" class="d-flex justify-content-center">
<input type="email" class="form-control me-2" placeholder="Enter your email" required>
<button type="submit" class="btn">Notify Me</button>
</form>-->
<footer>
<p class="text-muted">&copy; 2024 RideAware. All rights reserved.</p>
</footer>
<h1>Coming Soon!</h1>
<p>Be the first to know when we launch. Subscribe below:</p>
<div class="subscription">
<input id="email-input" type="email" placeholder="Enter your email" required />
<button id="notify-button">Notify Me</button>
</div>
</div>
<script src="/static/js/main.js"></script>
</body>
</html>