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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>About Us - 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>About Hyped Developments</h1>
        <p>At Hyped Developments, we specialize in delivering top-notch custom development solutions tailored to your unique needs. Our team of experienced developers is committed to transforming your ideas into reality through innovative and efficient coding practices.</p>
        
        <h2>Our Mission</h2>
        <p>To empower businesses and individuals by providing high-quality, customized software solutions that drive growth and efficiency.</p>
        
        <h2>Our Vision</h2>
        <p>To be a leading software development company recognized for our excellence, innovation, and customer-centric approach.</p>
        
        <h2>Our Services</h2>
        <ul>
            <li><strong>Custom Software Development:</strong> Tailored solutions to meet your specific business requirements.</li>
            <li><strong>Mobile and Web Applications:</strong> Building responsive and user-friendly applications for various platforms.</li>
            <li><strong>Product Development:</strong> From concept to deployment, we assist in creating market-ready products.</li>
        </ul>
         
        <p>We pride ourselves on our attention to detail, timely delivery, and unwavering commitment to client satisfaction.</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>