Skip to content

Commit

Permalink
fix: Use correct schema
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Nov 11, 2023
1 parent 7016a43 commit 933ad74
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions src/routes/announcements/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,26 @@

<Meta
title="Announcements"
schema={{
'@context': 'https://schema.org',
'@type': 'WebPage',
name: 'ReVanced Announcements',
abstract: 'Control panel for ReVanced announcements',
breadcrumb: 'Home > Announcements',
publisher: {
'@type': 'Organization',
name: 'ReVanced',
url: 'https://revanced.app/',
logo: {
'@type': 'ImageObject',
url: 'https://revanced.app/embed.png'
}
schemas={[
{
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
itemListElement: [
{
'@type': 'ListItem',
position: 1,
name: 'Home',
item: 'https://revanced.app/'
},
{
'@type': 'ListItem',
position: 2,
name: 'Announcements',
item: 'https://revanced.app/announcements'
}
]
}
}}
]}
/>

<main class="wrapper" in:fly={{ y: 10, easing: quintOut, duration: 750 }}>
Expand Down

0 comments on commit 933ad74

Please sign in to comment.