Skip to content
amermohia edited this page Dec 5, 2024 · 1 revision
<title><%= title || "About Us - Car Rental Saudi Arabia" %></title>
Car Rental Logo
<main>
    <section class="about-hero">
        <div class="about-content">
            <h1>About Car Rental Saudi Arabia</h1>
            <p>We are a leading car rental company in Saudi Arabia, providing exceptional service and a wide range of vehicles to meet all your transportation needs. With a vast network of locations across the kingdom, we strive to make your car rental experience smooth and hassle-free.</p>
        </div>
        <div class="about-image">
            <img src="/images/about-hero.jpg" alt="About Hero Image">
        </div>
    </section>

    <section class="our-mission">
        <div class="mission-content">
            <h2>Our Mission</h2>
            <p>Our mission is to provide our customers with the best possible car rental experience, offering reliable and well-maintained vehicles, competitive rates, and unparalleled customer service. We are committed to making your travels within Saudi Arabia enjoyable and stress-free.</p>
        </div>
        <div class="mission-image">
            <img src="/images/mission.jpg" alt="Our Mission">
        </div>
    </section>

    <section class="our-values">
        <h2>Our Values</h2>
        <div class="values-grid">
            <% values.forEach(value => { %>
            <div class="value-card">
                <img src="/images/<%= value.image %>" alt="<%= value.title %>">
                <h3><%= value.title %></h3>
                <p><%= value.description %></p>
            </div>
            <% }); %>
        </div>
    </section>
</main>

<footer>
    <div class="footer-content">
        <div class="footer-section">
            <h4>About Us</h4>
            <p>We are a leading car rental company in Saudi Arabia, providing exceptional service and a wide range of vehicles.</p>
        </div>
        <div class="footer-section">
            <h4>Contact Us</h4>
            <p>Phone: +966 123 456 789</p>
            <p>Email: <a href="mailto:info@carrentalsaudi.com">info@carrentalsaudi.com</a></p>
        </div>
        <div class="footer-section">
            <h4>Follow Us</h4>
            <div class="social-icons">
                <a href="#"><img src="/images/facebook.png" alt="Facebook"></a>
                <a href="#"><img src="/images/twitter.png" alt="Twitter"></a>
                <a href="#"><img src="/images/instagram.png" alt="Instagram"></a>
            </div>
        </div>
    </div>
    <div class="footer-bottom">
        <p>&copy; 2024 Car Rental Saudi Arabia. All rights reserved.</p>
    </div>
</footer>
Clone this wiki locally