2026-05-05 08:45:48 +12:00
|
|
|
|
<!doctype html>
|
|
|
|
|
|
<html lang="en-NZ">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
|
|
<meta name="robots" content="noindex" />
|
2026-06-17 21:51:29 +12:00
|
|
|
|
<title>Back soon | Goodwalk</title>
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
|
|
<link
|
|
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;500&family=Unbounded:wght@700;800&display=swap"
|
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
|
/>
|
2026-05-05 08:45:48 +12:00
|
|
|
|
<style>
|
|
|
|
|
|
:root {
|
|
|
|
|
|
--green: #213021;
|
2026-05-05 14:10:16 +12:00
|
|
|
|
--yellow: #ffd100;
|
2026-06-17 21:51:29 +12:00
|
|
|
|
--off-white: #f8f7f2;
|
|
|
|
|
|
--line: rgba(255, 255, 255, 0.16);
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
|
body {
|
|
|
|
|
|
margin: 0;
|
2026-06-17 21:51:29 +12:00
|
|
|
|
min-height: 100%;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
2026-06-17 21:51:29 +12:00
|
|
|
|
padding: 24px;
|
|
|
|
|
|
background: var(--green);
|
|
|
|
|
|
color: var(--off-white);
|
|
|
|
|
|
font-family: "Readex Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
|
|
|
|
|
|
line-height: 1.6;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-17 21:51:29 +12:00
|
|
|
|
main {
|
|
|
|
|
|
width: min(100%, 30rem);
|
2026-05-05 08:45:48 +12:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-17 21:51:29 +12:00
|
|
|
|
.logo {
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
margin-bottom: 40px;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
2026-06-17 21:51:29 +12:00
|
|
|
|
margin: 0 0 16px;
|
|
|
|
|
|
font-family: "Unbounded", sans-serif;
|
|
|
|
|
|
font-size: clamp(1.6rem, 5vw, 2.1rem);
|
|
|
|
|
|
font-weight: 800;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
line-height: 1.1;
|
2026-06-17 21:51:29 +12:00
|
|
|
|
letter-spacing: -0.03em;
|
|
|
|
|
|
color: var(--off-white);
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p {
|
2026-06-17 21:51:29 +12:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
max-width: 26rem;
|
|
|
|
|
|
color: rgba(248, 247, 242, 0.82);
|
|
|
|
|
|
font-size: 1rem;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-17 21:51:29 +12:00
|
|
|
|
.contact {
|
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
|
padding-top: 28px;
|
|
|
|
|
|
border-top: 1px solid var(--line);
|
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
|
color: rgba(248, 247, 242, 0.7);
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-17 21:51:29 +12:00
|
|
|
|
.contact a {
|
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
|
font-weight: 500;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
text-decoration: none;
|
2026-06-17 21:51:29 +12:00
|
|
|
|
border-bottom: 1px solid rgba(255, 209, 0, 0.4);
|
|
|
|
|
|
padding-bottom: 1px;
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-17 21:51:29 +12:00
|
|
|
|
.contact a:hover {
|
|
|
|
|
|
border-bottom-color: var(--yellow);
|
2026-05-05 08:45:48 +12:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
2026-06-17 21:51:29 +12:00
|
|
|
|
<main>
|
|
|
|
|
|
<img class="logo" src="/m/logo.png" alt="Goodwalk" width="241" height="48" />
|
|
|
|
|
|
<h1>Back on the lead shortly</h1>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
We’re making a few quick updates. The site will be back to normal in a moment — thanks for your patience.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p class="contact">
|
|
|
|
|
|
Need us now? Email
|
|
|
|
|
|
<a href="mailto:info@goodwalk.co.nz">info@goodwalk.co.nz</a>
|
|
|
|
|
|
or call <a href="tel:+64226421011">(022) 642 1011</a>.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</main>
|
2026-05-05 08:45:48 +12:00
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
window.location.reload();
|
|
|
|
|
|
}, 60000);
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|