v4.0.6 - Simplicity focus
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
<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.
|
||||
* 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.
|
||||
*
|
||||
* To go live: in src/routes/[slug]/+page.svelte, render TinyGangPage instead
|
||||
* of ServiceLandingPage in the `data.slug === 'pack-walks'` branch.
|
||||
* To go live: in src/routes/[slug]/+page.svelte, render ServiceClarityPage
|
||||
* 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 ServiceClarityPage from '$lib/components/pages/ServiceClarityPage.svelte';
|
||||
import { homepageContent } from '$lib/content/homepage';
|
||||
import { packWalksContent } from '$lib/content/pack-walks';
|
||||
</script>
|
||||
@@ -20,5 +21,5 @@
|
||||
</svelte:head>
|
||||
|
||||
<Header navigation={homepageContent.navigation} />
|
||||
<TinyGangPage content={homepageContent} pageContent={packWalksContent} currentPath="/variants/tiny-gang" />
|
||||
<Footer footer={homepageContent.footer} />
|
||||
<ServiceClarityPage content={homepageContent} pageContent={packWalksContent} currentPath="/variants/tiny-gang" />
|
||||
<Footer footer={homepageContent.footer} variant="minimal" />
|
||||
|
||||
Reference in New Issue
Block a user