Skip to content

Commit

Permalink
Merge pull request #98 from TypedDevs/favicon
Browse files Browse the repository at this point in the history
Favicon + SEO + small things
  • Loading branch information
Chemaclass authored Sep 16, 2023
2 parents fb909a3 + f357dd2 commit 04b6514
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
26 changes: 23 additions & 3 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,25 @@ import { defineConfig } from 'vitepress'

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: 'bashunit',
description: 'A simple testing library for bash scripts',
title: 'bashunit - A simple testing library for bash scripts',
titleTemplate: 'bashunit',
description: 'Test your bash scripts in the fastest and simplest way, discover the most modern bash testing library.',
lang: 'en-US',

head: [
['link', { rel: 'icon', href: '/favicon.ico' }]
],

themeConfig: {
// https://vitepress.dev/reference/default-theme-config
logo: '/logo.svg',
externalLinkIcon: true,
siteTitle: false,

logo: {
light: '/logo_navbar.svg',
dark: '/logo_navbar_dark.svg',
alt: 'bashunit'
},

sidebar: [
{
Expand All @@ -19,11 +33,17 @@ export default defineConfig({
],

socialLinks: [
{ icon: 'x', link: 'https://x.com/bashunit' },
{ icon: 'github', link: 'https://github.com/TypedDevs/bashunit' }
],

search: {
provider: 'local'
},

footer: {
message: 'Released under the MIT License.',
copyright: 'Copyright © 2023-present TypedDevs'
}
}
})
Binary file added docs/public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions docs/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logo_navbar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/public/logo_navbar_dark.svg
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 04b6514

Please sign in to comment.