Skip to content

Commit

Permalink
Fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
khromov committed Dec 3, 2024
1 parent 71abd8b commit a25dd43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
import { SITE_URL } from '$lib/constants'
let { children } = $props()
const TITLE = 'svelte-llm - Svelte 5 and SvelteKit Developer documentation in an LLM-ready format'
</script>

<svelte:head>
<title>svelte-llm - Svelte 5 and SvelteKit Developer documentation in an LLM-ready format</title>
<meta property="og:title" content="Your Page Title" />
<title>{TITLE}</title>
<meta property="og:title" content={TITLE} />
<meta property="og:type" content="website" />
<meta property="og:url" content={SITE_URL} />
<meta property="og:image" content="{SITE_URL}/og.jpg" />
Expand Down

0 comments on commit a25dd43

Please sign in to comment.