diff --git a/public/images/logo-outlined.png b/public/images/logo-outlined.png new file mode 100644 index 0000000..bceeee5 Binary files /dev/null and b/public/images/logo-outlined.png differ diff --git a/public/sitemap.xml b/public/sitemap.xml index 71c3cb9..65bc69f 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,20 +1,20 @@ -https://docs.trustlab.dyzulk.com2026-01-09T09:09:34.013Zdaily0.7 -https://docs.trustlab.dyzulk.com/developer2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/developer/endpoints2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/certificates/download-install2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/certificates/renewal2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/certificates/request-new2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/certificates/revocation2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/certificates/view-details2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/concepts/pki-fundamentals2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/concepts/trust-architecture2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/getting-started/access-dashboard2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/getting-started/install-root-ca2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/integrations/smime2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/integrations/web-servers2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/troubleshooting/browser-errors2026-01-09T09:09:34.014Zdaily0.7 -https://docs.trustlab.dyzulk.com/guide/troubleshooting/developer-tools2026-01-09T09:09:34.014Zdaily0.7 +https://docs.trustlab.dyzulk.com2026-01-09T09:32:31.278Zdaily0.7 +https://docs.trustlab.dyzulk.com/developer2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/developer/endpoints2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/certificates/download-install2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/certificates/renewal2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/certificates/request-new2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/certificates/revocation2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/certificates/view-details2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/concepts/pki-fundamentals2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/concepts/trust-architecture2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/getting-started/access-dashboard2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/getting-started/install-root-ca2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/integrations/smime2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/integrations/web-servers2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/troubleshooting/browser-errors2026-01-09T09:32:31.279Zdaily0.7 +https://docs.trustlab.dyzulk.com/guide/troubleshooting/developer-tools2026-01-09T09:32:31.279Zdaily0.7 \ No newline at end of file diff --git a/theme.config.tsx b/theme.config.tsx index 50b3e8a..001cc22 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -26,17 +26,42 @@ const config: DocsThemeConfig = { docsRepositoryBase: 'https://github.com/dyzulk/trustlab-docs/tree/main', useNextSeoProps() { const { asPath } = useRouter() + const description = 'TrustLab - Private Certificate Authority' + const siteName = 'TrustLab Docs' + + let titleTemplate = '%s – ' + siteName if (asPath.includes('/index') || asPath.endsWith('/en/') || asPath.endsWith('/id/')) { - return { - titleTemplate: 'TrustLab - Private Certificate Authority' - } + titleTemplate = 'TrustLab - Private Certificate Authority' } + return { - titleTemplate: '%s – TrustLab Docs' + titleTemplate, + description, + openGraph: { + type: 'website', + locale: 'en_US', + url: `https://docs.trustlab.dyzulk.com${asPath}`, + siteName: siteName, + images: [ + { + url: 'https://docs.trustlab.dyzulk.com/images/logo-outlined.png', + width: 1200, + height: 630, + alt: 'TrustLab Logo', + }, + ], + }, + twitter: { + handle: '@trustlab', + site: '@trustlab', + cardType: 'summary_large_image', + }, } }, head: ( <> + + ),