mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
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:
BIN
apps/documentation/public/apple-touch-icon.png
Normal file
BIN
apps/documentation/public/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
apps/documentation/public/favicon-16x16.png
Normal file
BIN
apps/documentation/public/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 529 B |
BIN
apps/documentation/public/favicon-32x32.png
Normal file
BIN
apps/documentation/public/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
@ -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" />
|
||||
</>
|
||||
);
|
||||
},
|
||||
|
||||
@ -4,7 +4,10 @@
|
||||
"scripts": {
|
||||
"build": "turbo run build",
|
||||
"build:web": "turbo run build --filter=@documenso/web",
|
||||
"dev": "turbo run dev --filter=@documenso/web --filter=@documenso/marketing --filter=@documenso/documentation",
|
||||
"dev": "turbo run dev --filter=@documenso/web",
|
||||
"dev:web": "turbo run dev --filter=@documenso/web",
|
||||
"dev:marketing": "turbo run dev --filter=@documenso/marketing",
|
||||
"dev:docs": "turbo run dev --filter=@documenso/documentation",
|
||||
"start": "turbo run start --filter=@documenso/web --filter=@documenso/marketing --filter=@documenso/documentation",
|
||||
"lint": "turbo run lint",
|
||||
"lint:fix": "turbo run lint:fix",
|
||||
|
||||
Reference in New Issue
Block a user