5e2bb8585a
- Initialize beads (.beads/ directory) - Add Claude Code hooks for SessionStart/PreCompact - Update CLAUDE.md to clarify all build artifacts are committed - Update .gitignore to allow node_modules and dist
151 lines
5.7 KiB
PHP
Executable File
151 lines
5.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Template Name: About Page
|
|
* Template for displaying the About/Team page
|
|
*
|
|
* @package HomeProz
|
|
*/
|
|
|
|
// Prevent direct access
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<main id="primary" class="site-main about-page-main">
|
|
|
|
<?php
|
|
// Hero Section
|
|
get_template_part('template-parts/components/hero-section', null, array(
|
|
'title' => 'About HomeProz',
|
|
'subtitle' => 'Your trusted real estate partner in Albert Lea and surrounding Minnesota communities.',
|
|
'size' => 'small',
|
|
));
|
|
?>
|
|
|
|
<!-- Company Story Section -->
|
|
<section class="about-story-section">
|
|
<div class="container">
|
|
<div class="about-story-content">
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Our Values Section -->
|
|
<section class="about-values-section">
|
|
<div class="container">
|
|
<header class="about-values-header">
|
|
<h2 class="about-values-title">Our Values</h2>
|
|
</header>
|
|
|
|
<div class="features-grid">
|
|
<?php
|
|
get_template_part('template-parts/components/feature-block', null, array(
|
|
'icon' => 'handshake',
|
|
'title' => 'Integrity',
|
|
'text' => 'We believe in honest, transparent communication throughout every transaction. Your trust is our priority.',
|
|
));
|
|
|
|
get_template_part('template-parts/components/feature-block', null, array(
|
|
'icon' => 'personalized',
|
|
'title' => 'Client-Focused',
|
|
'text' => 'Your goals are our goals. We listen carefully and work tirelessly to exceed your expectations.',
|
|
));
|
|
|
|
get_template_part('template-parts/components/feature-block', null, array(
|
|
'icon' => 'local-expertise',
|
|
'title' => 'Community',
|
|
'text' => 'We live and work in the communities we serve. Local knowledge means better results for you.',
|
|
));
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Meet the Team Section -->
|
|
<section class="about-team-section">
|
|
<div class="container">
|
|
<header class="about-team-header">
|
|
<h2 class="about-team-title">Meet Our Team</h2>
|
|
<p class="about-team-subtitle">A dedicated group of real estate professionals committed to your success</p>
|
|
</header>
|
|
|
|
<div class="about-team-grid">
|
|
<?php
|
|
// Team member data with bios
|
|
$team_members = array(
|
|
array(
|
|
'name' => 'Heidi Johnson',
|
|
'title' => 'REALTOR',
|
|
'phone' => '507-402-2310',
|
|
'email' => 'heidi@homeprozrealestate.com',
|
|
'bio' => 'With deep roots in the Albert Lea community, Heidi brings years of local knowledge and dedication to every client relationship.',
|
|
),
|
|
array(
|
|
'name' => 'Kyra Johnson',
|
|
'title' => 'REALTOR',
|
|
'phone' => '507-516-4870',
|
|
'email' => 'kyra@homeprozrealestate.com',
|
|
'bio' => 'Kyra combines her passion for real estate with a commitment to exceptional service, guiding buyers and sellers to successful outcomes.',
|
|
),
|
|
array(
|
|
'name' => 'John Hill',
|
|
'title' => 'REALTOR',
|
|
'phone' => '507-383-1738',
|
|
'email' => 'john@homeprozrealestate.com',
|
|
'bio' => 'John\'s expertise in the local market and attention to detail ensure a smooth experience whether you\'re buying or selling.',
|
|
),
|
|
array(
|
|
'name' => 'Mindy Moreno',
|
|
'title' => 'REALTOR',
|
|
'phone' => '507-438-5900',
|
|
'email' => 'mindy@homeprozrealestate.com',
|
|
'bio' => 'Mindy\'s bilingual skills and warm approach help her connect with a diverse range of clients in our community.',
|
|
),
|
|
);
|
|
|
|
foreach ($team_members as $member) :
|
|
get_template_part('template-parts/components/agent-card', null, $member);
|
|
endforeach;
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Broker Information Section -->
|
|
<section class="about-broker-section">
|
|
<div class="container">
|
|
<div class="about-broker-content">
|
|
<h3 class="about-broker-title">Broker Information</h3>
|
|
<p class="about-broker-text">
|
|
HomeProz Real Estate operates as a DBA of Bridge Realty, MN.<br>
|
|
Licensed in the State of Minnesota.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<?php
|
|
// Contact CTA Section
|
|
get_template_part('template-parts/components/cta-section', null, array(
|
|
'title' => 'Ready to Work With Us?',
|
|
'text' => 'Contact our team today to start your real estate journey.',
|
|
'button_text' => 'Get in Touch',
|
|
'button_url' => home_url('/contact/'),
|
|
'style' => 'accent',
|
|
));
|
|
?>
|
|
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|