v4.0.6 - Simplicity focus

This commit is contained in:
2026-06-22 22:56:00 +12:00
parent 0e88e7bdac
commit bfd96c677f
9 changed files with 1247 additions and 42 deletions
@@ -0,0 +1,24 @@
<script lang="ts">
/*
* Preview of the redesigned Tiny Gang pack walks page.
* Single source of truth is TinyGangPage.svelte. noindex so it does not
* compete with the live /pack-walks page in search.
*
* To go live: in src/routes/[slug]/+page.svelte, render TinyGangPage instead
* of ServiceLandingPage in the `data.slug === 'pack-walks'` branch.
*/
import Header from '$lib/components/ui/Header.svelte';
import Footer from '$lib/components/ui/Footer.svelte';
import TinyGangPage from '$lib/components/pages/TinyGangPage.svelte';
import { homepageContent } from '$lib/content/homepage';
import { packWalksContent } from '$lib/content/pack-walks';
</script>
<svelte:head>
<title>Tiny Gang pack walks (redesign preview) | Goodwalk</title>
<meta name="robots" content="noindex, nofollow" />
</svelte:head>
<Header navigation={homepageContent.navigation} />
<TinyGangPage content={homepageContent} pageContent={packWalksContent} currentPath="/variants/tiny-gang" />
<Footer footer={homepageContent.footer} />