Text me when you get home!

07.03.2025 Sunset - 08.03.2025 Sunrise

Because everyone deserves to feel safe at night.

About the Walk

From sunset on 7/3/2026 to sunrise on 8/3/2026, we will walk the Boorloo Bridge to Narrows Bridge loop around the Swan River, finishing as we step into International Women’s Day.

This walk represents a reality many women know all too well: the feeling of not being able to walk home safely at night. It reflects the everyday precautions women take — sharing their location, holding keys between their fingers, calling someone on the way home, or sending the familiar message: “Text me when you’re home.”

This fundraiser is not about fear — it’s about awareness, empathy, and change. We are walking to start conversations about why safety at night is not equally experienced and why education is essential in changing this reality.

This walk is a symbol of solidarity, of listening, and of our commitment to creating a future where “text me when you’re home” is no longer necessary.

Fundraising

All funds raised will support We Are WM, a Perth-based not-for-profit charity dedicated to educating young people on consent, healthy relationships, and respect.

Our programs focus on:

  • Consent and respectful relationships

  • Gender stereotypes and social conditioning

  • Communication, empathy, and accountability

  • Preventing gender-based violence through early education

By donating, you are helping us continue to take education into schools and communities across Western Australia, empowering the next generation to build safer, healthier relationships for everyone.

How can I get involved?

Join the walk

Join the Walk
Register for free and choose to walk a lap alongside us at any point between sunset and sunrise. Walk one lap or several — every step shows solidarity and support.

Sponsor a Lap
Can’t join us on the night? You can donate to sponsor a walking lap and help fund vital education programs for young people across WA.

Spread the Word
Share the walk with your friends, family, and networks. Starting conversations is part of the change we’re working towards.

👉 Sign up here to join the walk
👉 Donate here to show your support

Where is this being held?

 Perth, Western Australia. This will be a continuous from the Boorloo Bridge to the Narrows Bridge loop. From sunset to sunrise.

Start: 7pm Boorloo Bridge 7.3.26

End: 7am Boolor Bridge 8.3.26

<div class="hero-fundraiser">
  <h1>We’re Raising $1,000,000</h1>
  <p class="subheading">Every donation brings us closer to safety & support</p>

  <div class="progress-wrapper">
    <div id="progress-bar"></div>
  </div>

  <p class="amount">$<span id="raised">250000</span> / $1,000,000</p>

  <a href="https://wearewm.grassrootz.com/text-me-when-you-get-home"
     target="_blank"
     class="donate-btn">
    Donate Now
  </a>
</div>

<style>
.hero-fundraiser {
  background:#111;
  color:#fff;
  text-align:center;
  padding:60px 20px;
  border-radius:12px;
  font-family:Arial, sans-serif;
}
.hero-fundraiser h1 {
  font-size:3rem;
  margin-bottom: 10px;
}
.hero-fundraiser .subheading {
  font-size:1.4rem;
  margin-bottom: 30px;
  opacity:0.9;
}
.progress-wrapper {
  background:#333;
  border-radius:30px;
  height:30px;
  margin: 0 auto 16px;
  max-width:800px;
  overflow:hidden;
}
#progress-bar {
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #ff275d, #ff89a5);
  border-radius:30px;
  transition: width 1.2s ease-in-out;
}
.amount {
  font-size:1.6rem;
  margin-bottom:30px;
}
.donate-btn {
  font-size:1.5rem;
  padding:18px 40px;
  background:#ff275d;
  color:#fff;
  text-decoration:none;
  display:inline-block;
  border-radius:30px;
  font-weight:bold;
}
</style>

<script>
  const raisedAmt = 250000; // Update this manually
  const goalAmt = 1000000;
  const pct = Math.min((raisedAmt / goalAmt) * 100, 100);
  document.getElementById("progress-bar").style.width = pct + "%";
</script>