feat: icons instead of text links in navbar

This commit is contained in:
Pete Davison
2024-03-10 18:39:50 +00:00
parent 40e97bbbf4
commit c4d8b36e05
6 changed files with 68 additions and 11 deletions

View File

@@ -191,26 +191,26 @@ const config: Config = {
position: 'right',
dropdownActiveClassDisabled: true,
},
{
href: GITHUB_URL,
label: 'GitHub',
position: 'right'
},
{
href: TWITTER_URL,
label: 'Twitter',
position: 'right'
position: 'right',
className: "header-icon-link icon-twitter",
},
{
href: MASTODON_URL,
label: 'Mastodon',
rel: 'me',
position: 'right'
position: 'right',
className: "header-icon-link icon-mastodon",
},
{
href: DISCORD_URL,
label: 'Discord',
position: 'right'
position: 'right',
className: "header-icon-link icon-discord",
},
{
href: GITHUB_URL,
position: 'right',
className: "header-icon-link icon-github",
}
]
},