Files
gw-svelte/src/routes/variants/tiny-gang/+page.svelte
T

25 lines
1.0 KiB
Svelte
Raw Normal View History

2026-06-22 22:56:00 +12:00
<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} />