25 lines
1.0 KiB
Svelte
25 lines
1.0 KiB
Svelte
<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} />
|