-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.js
More file actions
50 lines (47 loc) · 1.56 KB
/
Copy pathschema.js
File metadata and controls
50 lines (47 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const personSchema = {
'@type': 'Person',
'@id': 'https://daxgigandet.com/#person',
name: 'Dax Gigandet',
url: 'https://daxgigandet.com',
sameAs: [
'https://www.tiktok.com/@daxgigandet',
'https://www.youtube.com/@daxgigandet',
'https://twitter.com/DaxGigandet',
'https://instagram.com/daxgigandet'
],
jobTitle: 'Musician, Influencer, Activist',
description: 'Dax Gigandet — musician, TikTok personality, activist. Official website and creator hub.'
}
export const websiteSchema = {
'@type': 'WebSite',
'@id': 'https://daxgigandet.com/#website',
url: 'https://daxgigandet.com',
name: 'Dax Gigandet — Official',
potentialAction: {
'@type': 'SearchAction',
target: 'https://daxgigandet.com/?s={search_term_string}',
'query-input': 'required name=search_term_string'
}
}
export const breadcrumbSchema = {
'@type': 'BreadcrumbList',
itemListElement: [
{ '@type': 'ListItem', position: 1, name: 'Home', item: 'https://daxgigandet.com' }
]
}
export const musicSchema = [
{
'@type': 'MusicRecording',
name: 'Voices',
url: 'https://daxgigandet.com/music/voices',
byArtist: { '@type': 'MusicGroup', name: 'Dax Gigandet' },
inAlbum: { '@type': 'MusicAlbum', name: 'Sinister', url: 'https://daxgigandet.com/album/sinister' }
},
{
'@type': 'MusicRecording',
name: 'Medicaid',
url: 'https://daxgigandet.com/music/medicaid',
byArtist: { '@type': 'MusicGroup', name: 'Dax Gigandet' },
inAlbum: { '@type': 'MusicAlbum', name: 'Sinister', url: 'https://daxgigandet.com/album/sinister' }
}
]