CI / test (pull_request) Successful in 13s
Closes #1 — refresh About copy and photo, surface the Butterfield Rd office on Home/Contact/nav, and align service-area defaults with Chicago's western suburbs.
71 lines
4.7 KiB
HTML
71 lines
4.7 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}About {{ SITE_NAME }} · EXIT Realty Realtor{% endblock %}
|
|
{% block og_title %}About {{ SITE_NAME }} · EXIT Realty Realtor{% endblock %}
|
|
{% block twitter_title %}About {{ SITE_NAME }} · EXIT Realty Realtor{% endblock %}
|
|
{% block meta_description %}Meet {{ SITE_NAME }}, your real estate partner in Chicago's western suburbs with EXIT Realty Redefined — buyers, sellers, and first-time homebuyers welcome. {{ CONTACT_SERVICE_AREA }}.{% endblock %}
|
|
{% block og_description %}Meet {{ SITE_NAME }}, your real estate partner in Chicago's western suburbs with EXIT Realty Redefined — buyers, sellers, and first-time homebuyers welcome. {{ CONTACT_SERVICE_AREA }}.{% endblock %}
|
|
{% block twitter_description %}Meet {{ SITE_NAME }}, your real estate partner in Chicago's western suburbs with EXIT Realty Redefined — buyers, sellers, and first-time homebuyers welcome. {{ CONTACT_SERVICE_AREA }}.{% endblock %}
|
|
{% block og_image %}
|
|
<meta property="og:image" content="{{ PUBLIC_SITE_URL }}{% static 'images/monica-dhillon-headshot.jpg' %}">
|
|
<meta property="og:image:alt" content="Professional headshot of {{ SITE_NAME }}, Real Estate Agent">
|
|
{% endblock %}
|
|
{% block structured_data %}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "AboutPage",
|
|
"name": "About {{ SITE_NAME|escapejs }}",
|
|
"url": "{{ PUBLIC_SITE_URL }}{% url 'public:about' %}",
|
|
"description": "Meet {{ SITE_NAME|escapejs }}, your real estate partner in Chicago's western suburbs with EXIT Realty Redefined.",
|
|
"mainEntity": {
|
|
"@type": "RealEstateAgent",
|
|
"name": "{{ SITE_NAME|escapejs }}",
|
|
"url": "{{ PUBLIC_SITE_URL }}/",
|
|
"image": "{{ PUBLIC_SITE_URL }}{% static 'images/monica-dhillon-headshot.jpg' %}",
|
|
"telephone": "{{ CONTACT_PHONE|escapejs }}",
|
|
"email": "{{ CONTACT_EMAIL|escapejs }}",
|
|
{% if CONTACT_ADDRESS %}"address": "{{ CONTACT_ADDRESS|escapejs }}",{% endif %}
|
|
"areaServed": "{{ CONTACT_SERVICE_AREA|escapejs }}",
|
|
"worksFor": {
|
|
"@type": "Organization",
|
|
"name": "EXIT Realty Redefined"
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<section class="breadcrumbs-custom bg-image context-dark" style="background-image: url({% static 'images/breadcrumbs-image-1.jpg' %});">
|
|
<div class="breadcrumbs-custom-inner">
|
|
<div class="container breadcrumbs-custom-container">
|
|
<div class="breadcrumbs-custom-main">
|
|
<p class="breadcrumbs-custom-subtitle title-decorated">About</p>
|
|
<h1 class="text-uppercase breadcrumbs-custom-title">Meet Monica</h1>
|
|
</div>
|
|
<ul class="breadcrumbs-custom-path">
|
|
<li><a href="{% url 'public:home' %}">Home</a></li>
|
|
<li class="active">About</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="section section-lg">
|
|
<div class="container">
|
|
<div class="row row-50 justify-content-center justify-content-lg-between flex-lg-row-reverse">
|
|
<div class="col-md-10 col-lg-6 col-xl-5">
|
|
<h2>Meet Monica Dhillon — Your Real Estate Partner in the Western Suburbs</h2>
|
|
<p class="about-subtitle">Mandeep "Monica" Dhillon is a real estate agent serving Chicago's western suburbs, just forty minutes from downtown. At Exit Realty Redefined, Monica and her team bring years of hands-on experience helping buyers and sellers reach their goals — with a special passion for guiding first-time homebuyers through a process that can feel overwhelming, from mortgages to market values to all the fine print in between.</p>
|
|
<p>Family values aren't just a tagline here — they're how we treat every client who walks through our door.</p>
|
|
<p>Monica has been through the homebuying process herself, more than once, so she gets the nerves and the "wait, is this normal?" moments. Her experience spans both sides of the table — buyers, sellers, investors — and properties ranging from $200K starter homes to multi-million dollar deals.</p>
|
|
<p>Whatever your real estate goals, Monica and the Exit Realty team are ready to help you navigate the market's ups and downs. Questions? Don't be shy — she's always just a call or message away.</p>
|
|
<a class="button button-lg button-primary button-winona" href="{% url 'public:contact' %}" data-tianji-event="about_cta" data-tianji-event-destination="contact">Work with me</a>
|
|
</div>
|
|
<div class="col-md-10 col-lg-6 col-xl-6">
|
|
<img class="img-responsive" src="{% static 'images/monica-dhillon-headshot.jpg' %}" alt="Professional headshot of Mandeep "Monica" Dhillon, Real Estate Agent, wearing a blue cardigan against a black background." width="816" height="1024"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|