diff --git a/examples/snowpack/astro/components/BaseHead.astro b/examples/snowpack/astro/components/BaseHead.astro new file mode 100644 index 000000000..b24861ca6 --- /dev/null +++ b/examples/snowpack/astro/components/BaseHead.astro @@ -0,0 +1,38 @@ +--- +import Banner from './Banner.astro'; +import Nav from './Nav.astro'; + +export let title: string; +export let description: string; +export let permalink: string; +--- + + + + + + + + + +{title} + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/snowpack/astro/components/BaseLayout.astro b/examples/snowpack/astro/components/BaseLayout.astro new file mode 100644 index 000000000..2e141a83f --- /dev/null +++ b/examples/snowpack/astro/components/BaseLayout.astro @@ -0,0 +1,20 @@ +--- +import Banner from './Banner.astro'; +import Nav from './Nav.astro'; +--- + + +