import base64
from textwrap import dedent
img_path = Path(‘/mnt/data/a_landing_page_one_page_website_promotes_phoenix_b.png’)
img_b64 = base64.b64encode(img_path.read_bytes()).decode(‘ascii’)
img_data = f”data:image/png;base64,{img_b64}”
phone_display = “+61 0401 476 796”
phone_href = “+61401476796”
email = “PhoneixBanger@gmail.com”
html = f”””
Not A Normal DJ
Festivals
Weddings
Private parties
This is Phoenix Banger. Big sound. Big visuals. Big crowd response.
Every Event Covered
All packages include the full DJ + Live Drums experience with bespoke setlists, pro setup, and a level of energy you do not get from a standard DJ booking.
From high end corporate rooms to packed dance floors and outdoor festival stages, Phoenix Banger brings a hybrid performance built to look big, sound tight, and keep people talking after the event.
The blank section is now replaced with a proper visual feature area, so the page feels complete inside Divi and on mobile.
- DJ decks + live acoustic drums on stage
- Tailored setlists and request friendly flow
- Professional presentation for premium events
- Fast enquiry pathway for bookings and requests
Book Or Connect
Click to reveal contact details, or open the request modal and send through your track request or booking enquiry.
Phone
Call or text to discuss your event.
Response within 24 hours guaranteed.
“””
# Divi code module snippet
start = html.split(“
divi = start
full_path = Path(‘/mnt/data/phoenix-banger-divi-ready-full.html’)
divi_path = Path(‘/mnt/data/phoenix-banger-divi-ready-code-module.html’)
full_path.write_text(html, encoding=’utf-8′)
divi_path.write_text(divi, encoding=’utf-8′)
print(full_path)
print(divi_path)