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

26 lines
1.1 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.
2026-07-04 09:59:57 +12:00
* Single source of truth is ServiceClarityPage.svelte (shared across all
* three service variants). noindex so it does not compete with the live
* /pack-walks page in search.
2026-06-22 22:56:00 +12:00
*
2026-07-04 09:59:57 +12:00
* To go live: in src/routes/[slug]/+page.svelte, render ServiceClarityPage
* instead of ServiceLandingPage in the `data.slug === 'pack-walks'` branch.
2026-06-22 22:56:00 +12:00
*/
import Header from '$lib/components/ui/Header.svelte';
import Footer from '$lib/components/ui/Footer.svelte';
2026-07-04 09:59:57 +12:00
import ServiceClarityPage from '$lib/components/pages/ServiceClarityPage.svelte';
2026-06-22 22:56:00 +12:00
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} />
2026-07-04 09:59:57 +12:00
<ServiceClarityPage content={homepageContent} pageContent={packWalksContent} currentPath="/variants/tiny-gang" />
<Footer footer={homepageContent.footer} variant="minimal" />