from pathlib import Path
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”””




Phoenix Banger | Divi Ready


DJ + Live Drums

Not A Normal DJ

Festival energy, live drums, polished MC work, and a show that turns a standard booking into a full scale moment.
Corporate events
Festivals
Weddings
Private parties

See Packages

DJ + Live Drums
This is Phoenix Banger. Big sound. Big visuals. Big crowd response.

What’s On Offer

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

Get In Touch

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.

Email

Response within 24 hours guaranteed.




“””

# Divi code module snippet
start = html.split(““,1)[1].rsplit(““,1)[0]
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)