Skip to content

Commit b001e9d

Browse files
authored
add rel: me to all example entries
1 parent f999548 commit b001e9d

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/details-example.js

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,36 @@ const links = [
1111
icon: "link",
1212
// Refer to FontAwesome documentation to determine if an icon should be a fas or fab. (Brands are fab, so most will be fab.)
1313
// https://fontawesome.com/icons?d=gallery&p=2&m=free
14-
prefix: "fas"
14+
prefix: "fas",
15+
rel: "me"
1516
},
1617
{
1718
name: "Twitter",
1819
url: "https://twitter.com/yourusername",
1920
icon: "twitter",
20-
prefix: "fab"
21+
prefix: "fab",
22+
rel: "me"
2123
},
2224
{
2325
name: "Facebook",
2426
url: "https://facebook.com/yourusername",
2527
icon: "facebook",
26-
prefix: "fab"
28+
prefix: "fab",
29+
rel: "me"
2730
},
2831
{
2932
name: "YouTube",
3033
url: "https://youtube.com/yourchannel",
3134
icon: "youtube",
32-
prefix: "fab"
35+
prefix: "fab",
36+
rel: "me"
3337
},
3438
{
3539
name: "GitHub",
3640
url: "https://github.com/yourusername",
3741
icon: "github",
38-
prefix: "fab"
42+
prefix: "fab",
43+
rel: "me"
3944
}
4045
];
4146

@@ -64,4 +69,4 @@ export { profile };
6469
export { colorScheme };
6570
export { links };
6671

67-
export default details;
72+
export default details;

0 commit comments

Comments
 (0)