Skip to content

Commit

Permalink
add schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnavK-09 committed Jun 17, 2023
1 parent c238fe6 commit 9c60d92
Showing 1 changed file with 33 additions and 18 deletions.
51 changes: 33 additions & 18 deletions website/src/lib/components/Head.svelte
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
<script>
// props
export let title = `Discover the Ultimate Revolt Bots You'll Ever Need`;
export let description =
'Discover cutting-edge bots designed for Revolt the revolutionary chat platform Boost your Revolt experience with our range of productivity & entertainment bots';
// props
export let title = `Discover the Ultimate Revolt Bots You'll Ever Need`;
export let description =
'Discover cutting-edge bots designed for Revolt the revolutionary chat platform Boost your Revolt experience with our range of community bots';
</script>

<svelte:head>
<!-- {/* Basic Tags */} -->
<title>{title} | RevBots</title>
<meta name="description" content={description} />
<!-- {/* Basic Tags */} -->
<title>{title} | RevBots</title>
<meta name="description" content={description} />
<link rel="canonical" href="https://www.example.com/your-page-url">
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "Revbots",
"url": "https://revbots.vercel.app/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://revbots.vercel.app/search?query={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>

<!-- {/* Og & Twitter Tags */} -->
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content="/banner.png" />
<meta property="og:url" content="https://revbots.vercel.app" />
<meta property="og:type" content="website" />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content="/banner.png" />
<meta name="twitter:card" content="summary_large_image" />
</svelte:head>

<!-- {/* Og & Twitter Tags */} -->
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content="/banner.png" />
<meta property="og:url" content="https://revbots.vercel.app" />
<meta property="og:type" content="website" />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content="/banner.png" />
<meta name="twitter:card" content="summary_large_image" />
</svelte:head>

1 comment on commit 9c60d92

@vercel
Copy link

@vercel vercel bot commented on 9c60d92 Jun 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rev-bots – ./

rev-bots-git-main-arnavk-09.vercel.app
rev-bots-arnavk-09.vercel.app
revbots.vercel.app

Please sign in to comment.