About VEOM Enterprises

<?php
/* Template Name: About Us */
get_header(); // Include header

?>
<div class="about-us-container">
    <div class="about-us-header">
        <h1>About Us</h1>
        <p>Welcome to our company. Here’s a bit about who we are.</p>
    </div>
    <div class="about-us-content">
        <p>Our company, <strong>Veom Enterprises</strong>, was founded with the aim of providing top-notch solutions in various fields...</p>
        <img src="path_to_image.jpg" alt="Our Team" />
        <p>We value innovation, customer service, and the relentless pursuit of excellence...</p>
    </div>
    <div class="about-us-team">
        <h2>Meet Our Team</h2>
        <ul>
            <li>John Doe - CEO</li>
            <li>Jane Smith - Marketing Director</li>
            <li>Emily Davis - Lead Developer</li>
        </ul>
    </div>
</div>
<?php
get_footer(); // Include footer
?>