Skip to content

Commit

Permalink
website: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Oct 13, 2024
1 parent b9fca19 commit 7f88e2d
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 1 deletion.
52 changes: 51 additions & 1 deletion website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ logger.info(customFields);
const config: Config = {
title: 'xPack QEMU RISC-V',
tagline: 'A binary distribution of QEMU RISC-V',
favicon: 'img/favicon.ico',
// Explicitly set in headTags.
// favicon: '/img/favicon.ico',

// Set the production url of your site here
url: 'https://xpack-dev-tools.github.io',
Expand Down Expand Up @@ -235,9 +236,58 @@ const config: Config = {
'./src/plugins/SelectReleasesPlugin',
],

// https://docusaurus.io/docs/api/docusaurus-config#headTags
headTags: [
{
tagName: 'link',
attributes: {
rel: 'icon',
type: 'image/png',
href: '/qemu-riscv/favicons/favicon-48x48.png',
sizes: '48x48'
}
},
{
tagName: 'link',
attributes: {
rel: 'icon',
type: 'image/svg+xml',
href: '/qemu-riscv/favicons/favicon.svg'
}
},
{
tagName: 'link',
attributes: {
rel: 'shortcut icon',
href: '/qemu-riscv/favicons/favicon.ico'
}
},
{
// This might also go to themeConfig.metadata.
tagName: 'meta',
attributes: {
name: 'apple-mobile-web-app-title',
content: 'xPack'
}
},
{
tagName: 'link',
attributes: {
rel: 'manifest',
href: '/qemu-riscv/favicons/site.webmanifest'
}
}
],
// https://docusaurus.io/docs/seo
themeConfig: {
// Replace with your project's social card
// image: 'img/docusaurus-social-card.jpg',
metadata: [
{
name: 'keywords',
content: 'xpack, binary, development, tools, qemu-riscv'
}
],
navbar: {
// overriden by i18n/en/docusaurus-theme-classic.
title: 'The xPack Binary Development Tools',
Expand Down
Binary file added website/static/favicons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/static/favicons/favicon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/static/favicons/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions website/static/favicons/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions website/static/favicons/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "xPack",
"short_name": "xPack",
"icons": [
{
"src": "/qemu-riscv/favicons/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/qemu-riscv/favicons/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7f88e2d

Please sign in to comment.