diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index 5b3df66..4e4aa6a 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -129,10 +129,15 @@ const config: Config = { items: [ {label: 'Benchmarks', to: '/benchmarks'}, {label: 'GitHub', href: 'https://github.com/kdpisda/kronos'}, + // rel="noopener" only (no noreferrer) so the author's own site + // sees KRONOS docs as a traffic source in its analytics. + {label: 'Author — kdpisda.in', href: 'https://kdpisda.in', rel: 'noopener'}, ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} Kuldeep Pisda. Licensed under GPL-3.0. Built with Docusaurus.`, + // The author's name in the copyright also links back, with the same + // referrer-preserving rel. Docusaurus renders `copyright` as HTML. + copyright: `Copyright © ${new Date().getFullYear()} Kuldeep Pisda. Licensed under GPL-3.0. Built with Docusaurus.`, }, prism: { theme: prismThemes.github,