Skip to content

Commit

Permalink
chore: 📈 allow web crawler to scrape the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kampsy committed Oct 15, 2024
1 parent 37c1532 commit 56a2187
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,44 @@
let { children }: { children: Snippet } = $props();
</script>

<svelte:head>
<!-- Primary Meta Tags -->
<meta name="title" content="Kampsy-ui | A Svelte 5 component library" />
<meta
name="description"
content="Kampsy-ui - A Svelte 5 component library, thoughtfully designed to deliver consistent and cohesive web experiences."
/>

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ui.kampsy.xyz" />
<meta property="og:title" content="Kampsy-ui | A Svelte 5 component library" />
<meta
property="og:description"
content="Kampsy-ui - A Svelte 5 component library, thoughtfully designed to deliver consistent and cohesive web experiences."
/>
<meta
property="og:image"
content="https://ucarecdn.com/91722eb1-c95a-42b2-b851-cdfe01a9bdf7/-/preview/1200x628/"
/>

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://ui.kampsy.xyz" />
<meta property="twitter:title" content="Kampsy-ui | A Svelte 5 component library" />
<meta
property="twitter:description"
content="Kampsy-ui - A Svelte 5 component library, thoughtfully designed to deliver consistent and cohesive web experiences."
/>
<meta
property="twitter:image"
content="https://ucarecdn.com/91722eb1-c95a-42b2-b851-cdfe01a9bdf7/-/preview/1200x628/"
/>

<!-- Meta Tags Generated with https://metatags.io -->
<meta name="robots" content="noindex,nofollow" />
</svelte:head>

<Analytics>
<main
class="ui-scrollbar font-inter min-h-screen overflow-x-hidden md:overflow-x-visible bg-kui-light-bg-secondary
Expand Down
2 changes: 2 additions & 0 deletions static/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow: /

0 comments on commit 56a2187

Please sign in to comment.