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.
This commit is contained in:
@@ -216,7 +216,12 @@ SITE_TAGLINE = env("SITE_TAGLINE", "MKDRealtor.com · EXIT Realty Redefined")
|
||||
PUBLIC_SITE_URL = env("PUBLIC_SITE_URL", "")
|
||||
CONTACT_PHONE = env("CONTACT_PHONE", "(555) 123-4567")
|
||||
CONTACT_EMAIL = env("CONTACT_EMAIL", "monica@example.com")
|
||||
CONTACT_SERVICE_AREA = env("CONTACT_SERVICE_AREA", "Serving Greater Metro Area")
|
||||
CONTACT_ADDRESS = env(
|
||||
"CONTACT_ADDRESS", "1245 Butterfield Rd. #100, Wheaton, IL 60189"
|
||||
)
|
||||
CONTACT_SERVICE_AREA = env(
|
||||
"CONTACT_SERVICE_AREA", "Serving Chicago's western suburbs"
|
||||
)
|
||||
CREDIT_NAME = env("CREDIT_NAME", "AI ML Operations, LLC")
|
||||
CREDIT_URL = env("CREDIT_URL", "https://aimloperations.com")
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 123 KiB |
@@ -65,7 +65,7 @@
|
||||
{% endif %}
|
||||
<article class="unit align-items-center">
|
||||
<div class="unit-left"><span class="icon icon-md icon-modern mdi mdi-map-marker"></span></div>
|
||||
<div class="unit-body"><span class="link-default">{{ CONTACT_SERVICE_AREA }}</span></div>
|
||||
<div class="unit-body"><span class="link-default">{% if CONTACT_ADDRESS %}{{ CONTACT_ADDRESS }}{% else %}{{ CONTACT_SERVICE_AREA }}{% endif %}</span></div>
|
||||
</article>
|
||||
<a class="button button-gray-bordered button-winona" href="{% url 'public:contact' %}" data-tianji-event="nav_get_in_touch">Get in touch</a>
|
||||
</div>
|
||||
@@ -117,7 +117,7 @@
|
||||
<span style="color:#7dd3da;font-size:12px">{{ SITE_TAGLINE }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer-advanced-text">Local expertise, clear communication, and a marketing platform built to bring serious buyers and sellers to you — not to a generic campaign factory.</p>
|
||||
<p class="footer-advanced-text">Local expertise, clear communication, and a marketing platform built to bring serious buyers and sellers to you — not to a generic campaign factory.{% if CONTACT_ADDRESS %} {{ CONTACT_ADDRESS }}.{% endif %}</p>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<h5 class="font-weight-bold text-uppercase text-white">Navigate</h5>
|
||||
|
||||
@@ -20,8 +20,11 @@ def site_branding(request):
|
||||
"CONTACT_PHONE": phone,
|
||||
"CONTACT_PHONE_TEL": _phone_tel(phone),
|
||||
"CONTACT_EMAIL": settings.CONTACT_EMAIL or "",
|
||||
"CONTACT_ADDRESS": getattr(settings, "CONTACT_ADDRESS", "") or "",
|
||||
"CONTACT_SERVICE_AREA": getattr(
|
||||
settings, "CONTACT_SERVICE_AREA", "Serving Greater Metro Area"
|
||||
settings,
|
||||
"CONTACT_SERVICE_AREA",
|
||||
"Serving Chicago's western suburbs",
|
||||
),
|
||||
"CREDIT_NAME": getattr(settings, "CREDIT_NAME", "AI ML Operations, LLC"),
|
||||
"CREDIT_URL": getattr(
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
{% 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 }}, a local EXIT Realty realtor helping families buy and sell homes with clear communication and marketing that reaches people. {{ CONTACT_SERVICE_AREA }}.{% endblock %}
|
||||
{% block og_description %}Meet {{ SITE_NAME }}, a local EXIT Realty realtor helping families buy and sell homes with clear communication and marketing that reaches people. {{ CONTACT_SERVICE_AREA }}.{% endblock %}
|
||||
{% block twitter_description %}Meet {{ SITE_NAME }}, a local EXIT Realty realtor helping families buy and sell homes with clear communication and marketing that reaches people. {{ CONTACT_SERVICE_AREA }}.{% 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/careers-1-570x388.jpg' %}">
|
||||
<meta property="og:image:alt" content="{{ SITE_NAME }}">
|
||||
<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">
|
||||
@@ -17,13 +17,15 @@
|
||||
"@type": "AboutPage",
|
||||
"name": "About {{ SITE_NAME|escapejs }}",
|
||||
"url": "{{ PUBLIC_SITE_URL }}{% url 'public:about' %}",
|
||||
"description": "Meet {{ SITE_NAME|escapejs }}, a local EXIT Realty realtor helping families buy and sell homes with clear communication and marketing that reaches people.",
|
||||
"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",
|
||||
@@ -52,13 +54,15 @@
|
||||
<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 class="text-uppercase">Local realtor,<br>personal service</h2>
|
||||
<p class="about-subtitle">I help families buy and sell homes with clear communication and marketing that actually reaches people — not just another postcard blast.</p>
|
||||
<p>This site replaces a costly third-party campaign platform. Visitors reach me through a protected contact form; every inquiry lands in my portal with source tracking so I know which campaigns work.</p>
|
||||
<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/careers-1-570x388.jpg' %}" alt="{{ SITE_NAME }}, EXIT Realty realtor" width="570" height="388"/>
|
||||
<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>
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"url": "{{ PUBLIC_SITE_URL }}/",
|
||||
"telephone": "{{ CONTACT_PHONE|escapejs }}",
|
||||
"email": "{{ CONTACT_EMAIL|escapejs }}",
|
||||
{% if CONTACT_ADDRESS %}"address": "{{ CONTACT_ADDRESS|escapejs }}",{% endif %}
|
||||
"areaServed": "{{ CONTACT_SERVICE_AREA|escapejs }}",
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
@@ -67,12 +68,14 @@
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if CONTACT_ADDRESS or CONTACT_SERVICE_AREA %}
|
||||
<div class="layout-bordered-item wow-outer">
|
||||
<div class="layout-bordered-item-inner wow slideInUp">
|
||||
<div class="icon icon-lg mdi mdi-map-marker text-primary"></div>
|
||||
<span class="link-default">{{ CONTACT_SERVICE_AREA }}</span>
|
||||
<span class="link-default">{% if CONTACT_ADDRESS %}{{ CONTACT_ADDRESS }}{% else %}{{ CONTACT_SERVICE_AREA }}{% endif %}</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
"image": "{{ PUBLIC_SITE_URL }}{% static 'images/slider-minimal-slide-1-1920x968.jpg' %}",
|
||||
"telephone": "{{ CONTACT_PHONE|escapejs }}",
|
||||
"email": "{{ CONTACT_EMAIL|escapejs }}",
|
||||
{% if CONTACT_ADDRESS %}"address": "{{ CONTACT_ADDRESS|escapejs }}",{% endif %}
|
||||
"description": "{{ SITE_NAME|escapejs }}, EXIT Realty — buying and selling homes with clear advice and multi-channel marketing. {{ CONTACT_SERVICE_AREA|escapejs }}.",
|
||||
"areaServed": "{{ CONTACT_SERVICE_AREA|escapejs }}",
|
||||
"worksFor": {
|
||||
@@ -35,7 +36,7 @@
|
||||
<div class="title-docor-text font-weight-bold title-decorated text-uppercase wow slideInLeft text-white">{{ SITE_NAME }} · MKDRealtor.com</div>
|
||||
</div>
|
||||
<h1 class="text-uppercase text-white font-weight-bold wow-outer"><span class="wow slideInDown" data-wow-delay=".2s">Your Home,<br>Guided Well</span></h1>
|
||||
<p class="text-white wow-outer"><span class="wow slideInDown" data-wow-delay=".35s">EXIT Realty Redefined — buying or selling in the metro area with clear advice, strong marketing, and a team that answers the phone.</span></p>
|
||||
<p class="text-white wow-outer"><span class="wow slideInDown" data-wow-delay=".35s">EXIT Realty Redefined — buying or selling in Chicago's western suburbs with clear advice, strong marketing, and a team that answers the phone.</span></p>
|
||||
<div class="wow-outer button-outer">
|
||||
<a class="button button-md button-primary button-winona wow slideInDown" href="{% url 'public:contact' %}" data-wow-delay=".4s" data-tianji-event="hero_cta" data-tianji-event-destination="contact">Start a conversation</a>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user