<!-- views/clipper-universe.ejs -->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Clipper - Hyped Developments</title>
    <link rel="stylesheet" href="/css/styles.css">
    <!-- Bootstrap CDN -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <%- include('partials/header') %>

    <div class="container mt-5">
        <div class="coming-soon">
            <h1>Clipper</h1>
            <p>Coming Soon!</p>
            <p>Stay tuned for updates on our exciting new project.</p>
        </div>
    </div>

    <%- include('partials/footer') %>
    <!-- Bootstrap JS Bundle -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>