Files
harpLabs_Inc/page-contact.php
2024-05-03 01:55:19 -04:00

70 lines
2.3 KiB
PHP

<?php
/**
* Contact Page template.
*
* @package ThemeStarter
*/
?>
<!-- Get Header -->
<?php get_header(); ?>
<section class="bg-stone-100 py-8 lg:py-16 flex items-center">
<div class="max-w-7xl mx-auto lg:grid lg:grid-cols-2 gap-16 px-4">
<div class="flex-1">
<h1 class="font-bold text-3xl md:text-4xl lg:text-5xl mb-4">Get in touch with us</h1>
<p class="mb-8">We will get in touch with you shortly.</p>
<div class="flex flex-col gap-x-6 my-8">
<p class="font-medium text-lg mb-4">Don't like filling forms?</p>
<a href="https://calendly.com/harplabs/discovery" class="w-full text-center rounded-md border border-black bg-yellow-300 px-8 py-2.5 text-sm font-semibold shadow-sm hover:bg-stone-200 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-yellow-600 uppercase">Book a discovery call</a>
</div>
<div class="hidden lg:block py-8">
<?php
$args = array(
'post_type' => 'testimonials',
'posts_per_page' => 1,
'orderby' => 'rand',
'order' => 'ASC',
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
?>
<div class="list-none">
<div class="flex flex-col items-center justify-center">
<div class="inline-block relative">
<img src="<?= get_field('testimonial_image') ?>" class="mb-4 mx-auto rounded-full w-44">
</div>
<p class="text-xl font-medium"><?php _e(the_title(), 'harplabs'); ?></p>
<p class="text-lg"><?php _e(get_field('testimonial_position'), 'harplabs'); ?></p>
<p class="text-lg text-stone-400"><?php _e(get_field('testimonial_company_name'), 'harplabs'); ?></p>
<p class="mt-4 mx-auto text-center"><?php _e(get_field('testimonial_review'), 'harplabs'); ?></p>
</div>
</div>
<?php }
wp_reset_postdata();
} else {
// No posts found
}
?>
</div>
</div>
<div>
<?= do_shortcode('[gravityform id="1" title="false"]') ?>
</div>
</div>
</section>
<!-- Get Footer -->
<?php get_footer(); ?>