diff --git a/.env.example b/.env.example
index ad3a4f9..d0a98a6 100644
--- a/.env.example
+++ b/.env.example
@@ -15,7 +15,8 @@ SITE_TAGLINE=MKDRealtor.com · EXIT Realty
PUBLIC_SITE_URL=http://127.0.0.1:8000
CONTACT_PHONE=(630) 452-4443
CONTACT_EMAIL=moni.dhill@gmail.com
-CONTACT_SERVICE_AREA=Serving Chicagoland
+CONTACT_ADDRESS=1245 Butterfield Rd. #100, Wheaton, IL 60189
+CONTACT_SERVICE_AREA=Serving Chicago's western suburbs
CREDIT_NAME=AI ML Operations, LLC
CREDIT_URL=https://aimloperations.com
@@ -59,7 +60,7 @@ PCM_WEBHOOK_SECRETS=
# PCM_WEBHOOK_SECRET=
# Required return address on every postcard order.
# Quote the JSON (compose/shell break on bare {…, …}).
-# PCM_RETURN_ADDRESS='{"firstName":"Monica","lastName":"Dhillon","address":"123 Main St","city":"Naperville","state":"IL","zipCode":"60540"}'
+# PCM_RETURN_ADDRESS='{"firstName":"Monica","lastName":"Dhillon","address":"1245 Butterfield Rd.","address2":"#100","city":"Wheaton","state":"IL","zipCode":"60189"}'
PCM_RETURN_ADDRESS=
# Or set fields individually if JSON is empty:
# PCM_RETURN_LINE1=
diff --git a/site/monica_site/settings/base.py b/site/monica_site/settings/base.py
index 114e50a..4076e37 100644
--- a/site/monica_site/settings/base.py
+++ b/site/monica_site/settings/base.py
@@ -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")
diff --git a/site/monica_site/static/images/monica-dhillon-headshot.jpg b/site/monica_site/static/images/monica-dhillon-headshot.jpg
new file mode 100644
index 0000000..37f7bdf
Binary files /dev/null and b/site/monica_site/static/images/monica-dhillon-headshot.jpg differ
diff --git a/site/monica_site/templates/base.html b/site/monica_site/templates/base.html
index b263ba2..a68a428 100644
--- a/site/monica_site/templates/base.html
+++ b/site/monica_site/templates/base.html
@@ -65,7 +65,7 @@
{% endif %}
- {{ CONTACT_SERVICE_AREA }}
+ {% if CONTACT_ADDRESS %}{{ CONTACT_ADDRESS }}{% else %}{{ CONTACT_SERVICE_AREA }}{% endif %}
Get in touch
@@ -117,7 +117,7 @@
{{ SITE_TAGLINE }}
-
+
Navigate
diff --git a/site/public/context_processors.py b/site/public/context_processors.py
index ebd2ba4..9e71eb9 100644
--- a/site/public/context_processors.py
+++ b/site/public/context_processors.py
@@ -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(
diff --git a/site/public/templates/public/about.html b/site/public/templates/public/about.html
index df5456d..d026935 100644
--- a/site/public/templates/public/about.html
+++ b/site/public/templates/public/about.html
@@ -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 %}
-
-
+
+
{% endblock %}
{% block structured_data %}