<!-- views/index.ejs -->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>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="home">
        <h1>Welcome to Hyped Developments</h1>
        <p>Your partner in custom development and innovative applications.</p>
        <hr>
        <h2>Our Services</h2>
        <ul>
            <li>Custom Software Development</li>
            <li>Mobile and Web Applications</li>
            <li>Product Development</li>
            <li>And more!</li>
        </ul>
        <p>Explore our website to learn more about what we offer.</p>
    </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>