Set favicon and logo on output

This commit is contained in:
thiloho
2024-08-25 16:31:12 +02:00
parent e7acc9749f
commit 926218fa34
7 changed files with 121 additions and 8 deletions

View File

@@ -4,6 +4,7 @@
import BlogFooter from "./common/BlogFooter.svelte";
const {
favicon,
title,
logoType,
logo,
@@ -11,6 +12,7 @@
articles,
footerAdditionalText
}: {
favicon: string;
title: string;
logoType: "text" | "image";
logo: string;
@@ -20,7 +22,7 @@
} = $props();
</script>
<BlogHead {title} />
<BlogHead {title} {favicon} />
<BlogNav {logoType} {logo} />