fix: replace default favicon with documenso logo (#1237)

Adds the documenso favicon and touch icon to the documentation website
keeping it on brand with our other websites and applications.
This commit is contained in:
Samyak Shah
2024-07-23 08:03:53 +05:30
committed by GitHub
parent 5b488c2ae4
commit 8abc749dad
5 changed files with 8 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,5 +1,5 @@
import { useConfig } from 'nextra-theme-docs';
import type { DocsThemeConfig } from 'nextra-theme-docs';
import { useConfig } from 'nextra-theme-docs';
const themeConfig: DocsThemeConfig = {
logo: <span>Documenso</span>,
@ -16,6 +16,9 @@ const themeConfig: DocsThemeConfig = {
<meta name="og:title" content={title} />
<meta name="description" content={description} />
<meta name="og:description" content={description} />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
</>
);
},