From fe9678bae999051b13a61bfa3e4639477a3ef7cc Mon Sep 17 00:00:00 2001 From: Marko Saric Date: Fri, 8 May 2026 12:32:21 +0200 Subject: [PATCH] footer --- docusaurus.config.js | 100 +++++++++++++++++++++++-------------------- src/css/custom.css | 8 +++- 2 files changed, 60 insertions(+), 48 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 9cdfd4db..94617d32 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -49,64 +49,70 @@ module.exports = { }, footer: { style: 'dark', + logo: { + alt: 'Plausible Analytics', + src: 'img/plausible_logo_darkmode.svg', + href: 'https://plausible.io', + width: 176, + }, + copyright: 'Made and hosted in the EU 🇪🇺 · Funded entirely by our subscribers.', links: [ { - title: 'Study', + title: 'Why Plausible?', items: [ - { - label: 'About Plausible', - to: 'https://plausible.io/about', - }, - { - label: 'Read our blog', - to: 'https://plausible.io/blog', - }, - { - label: 'Study the documentation', - to: 'https://plausible.io/docs', - }, + { label: 'Simple metrics', href: 'https://plausible.io/simple-web-analytics' }, + { label: 'Lightweight script', href: 'https://plausible.io/lightweight-web-analytics' }, + { label: 'Privacy focused', href: 'https://plausible.io/privacy-focused-web-analytics' }, + { label: 'Open source', href: 'https://plausible.io/open-source-website-analytics' }, + { label: 'Visitor segmentation', href: 'https://plausible.io/audience-segmentation' }, + { label: 'Ecommerce tracking', href: 'https://plausible.io/for-ecommerce-saas' }, + { label: 'Publishers', href: 'https://plausible.io/for-bloggers-creators' }, + { label: 'Agencies', href: 'https://plausible.io/for-freelancers-agencies' }, + { label: 'White label', href: 'https://plausible.io/white-label-web-analytics' }, + { label: 'Enterprise', href: 'https://plausible.io/enterprise-web-analytics' }, ], }, { - title: 'Community', + title: 'Explore', items: [ - { - label: 'GitHub', - href: 'https://github.com/plausible/', - }, - { - label: 'Twitter', - href: 'https://twitter.com/plausiblehq', - }, - { - label: 'Mastodon', - href: 'https://fosstodon.org/@plausible', - }, - { - label: 'LinkedIn', - href: 'https://www.linkedin.com/company/plausible-analytics/', - }, + { label: 'vs Google Analytics', href: 'https://plausible.io/vs-google-analytics' }, + { label: 'vs Matomo', href: 'https://plausible.io/vs-matomo' }, + { label: 'vs Cloudflare', href: 'https://plausible.io/vs-cloudflare-web-analytics' }, + { label: 'GA4 accuracy comparison', href: 'https://plausible.io/most-accurate-web-analytics' }, + { label: 'Why pay for analytics?', href: 'https://plausible.io/paid-analytics-vs-free-ga' }, + { label: 'WordPress plugin', href: 'https://plausible.io/wordpress-analytics-plugin' }, + { label: 'Google Tag Manager', href: 'https://plausible.io/gtm-template' }, + { label: 'Looker Studio', href: 'https://plausible.io/looker-studio-connector' }, + { label: 'NPM package', href: 'https://www.npmjs.com/package/@plausible-analytics/tracker' }, ], }, { - title: 'Explore', + title: 'Resources', + items: [ + { label: 'Documentation', href: 'https://plausible.io/docs' }, + { label: 'Blog', href: 'https://plausible.io/blog' }, + { label: 'Tools', href: 'https://plausible.io/tools' }, + { label: "What's new", href: 'https://plausible.io/changelog' }, + { label: 'Status', href: 'https://plausible.io/status' }, + { label: 'GitHub', href: 'https://github.com/plausible/analytics' }, + { label: 'Twitter', href: 'https://twitter.com/plausiblehq' }, + { label: 'Bluesky', href: 'https://bsky.app/profile/plausible.io' }, + { label: 'Mastodon', href: 'https://fosstodon.org/@plausible' }, + { label: 'LinkedIn', href: 'https://www.linkedin.com/company/plausible-analytics/' }, + ], + }, + { + title: 'Company', items: [ - { - label: 'Give us feedback', - href: 'https://plausible.io/feedback', - }, - { - label: 'We have a public roadmap', - to: 'https://plausible.io/roadmap', - }, - { - label: 'Check out the live demo', - href: 'https://plausible.io/plausible.io', - }, - { - label: 'Status', - href: 'https://plausible.io/status', - }, + { label: 'About', href: 'https://plausible.io/about' }, + { label: 'Pricing', href: 'https://plausible.io/#pricing' }, + { label: 'Contact', href: 'https://plausible.io/contact' }, + { label: 'Privacy policy', href: 'https://plausible.io/privacy' }, + { label: 'Data policy', href: 'https://plausible.io/data-policy' }, + { label: 'Terms', href: 'https://plausible.io/terms' }, + { label: 'DPA', href: 'https://plausible.io/dpa' }, + { label: 'Security', href: 'https://plausible.io/security' }, + { label: 'Imprint', href: 'https://plausible.io/imprint' }, ], }, ], diff --git a/src/css/custom.css b/src/css/custom.css index d7737cd3..70860e5c 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -436,9 +436,15 @@ html[data-theme='dark'] { --ifm-footer-background-color: var(--zinc-800); } +.footer__logo-image { + display: block; + margin: 0 auto 0.75rem; +} + .footer__copyright { padding-top: 2rem; - text-align: left; + text-align: center; + color: var(--zinc-400); } /* Search modal */