diff --git a/src/components/Metadata.astro b/src/components/Metadata.astro index 7f74477..1714552 100644 --- a/src/components/Metadata.astro +++ b/src/components/Metadata.astro @@ -1,5 +1,5 @@ --- -const { title, description } = Astro.props; +const { title, description, top } = Astro.props; ---
@@ -35,4 +35,6 @@ const { title, description } = Astro.props; + + {top ? : undefined} \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 9c1ce70..73b29e0 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -5,7 +5,7 @@ import LangSelect from "../components/LangSelect.astro"; --- -