diff --git a/src/lib/components/SEOopenGraph/OpenGraphPost.svelte b/src/lib/components/SEOopenGraph/OpenGraphPost.svelte new file mode 100644 index 0000000..ed36126 --- /dev/null +++ b/src/lib/components/SEOopenGraph/OpenGraphPost.svelte @@ -0,0 +1,20 @@ + + + + {openGraphData.title} + + + + + + + + {#each tags as tag (tag)} + + {/each} + diff --git a/src/lib/components/SEOopenGraph/SEO.svelte b/src/lib/components/SEOopenGraph/SEO.svelte new file mode 100644 index 0000000..dee3304 --- /dev/null +++ b/src/lib/components/SEOopenGraph/SEO.svelte @@ -0,0 +1,56 @@ + + + + {data.title} + + + {#if data.description} + + {/if} + + {#if data.canonical} + + {/if} + + + + + {#if data.description} + + {/if} + {#if data.canonical} + + {/if} + + + + + + + {#if data.description} + + {/if} + + + + {#each data.frontmatter?.tags as tag (tag)} + + {/each} + + diff --git a/src/lib/config.ts b/src/lib/config.ts index 9c4009c..19ae20e 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -15,6 +15,8 @@ export const socialLinks = [ { title: 'Phone', href: 'tel:+420792304497', icon: 'fa-regular fa-phone' }, ]; +export const FBNumID = 420694206942069 + // Routes export const NavRoutes = [ { title: 'Home', href: '/' },