diff options
Diffstat (limited to 'examples/snowpack/src/components/BaseLayout.astro')
-rw-r--r-- | examples/snowpack/src/components/BaseLayout.astro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/snowpack/src/components/BaseLayout.astro b/examples/snowpack/src/components/BaseLayout.astro index 040739515..c10859789 100644 --- a/examples/snowpack/src/components/BaseLayout.astro +++ b/examples/snowpack/src/components/BaseLayout.astro @@ -3,7 +3,6 @@ import Banner from './Banner.astro'; import Nav from './Nav.astro'; --- -<Banner /> <Nav /> <slot></slot> @@ -17,4 +16,4 @@ import Nav from './Nav.astro'; } gtag('js', new Date()); gtag('config', 'UA-130280175-9', { page_path: location.pathname === '/' ? (location.pathname + location.hash) : (location.pathname) }); -</script>
\ No newline at end of file +</script> |