Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 53 additions & 47 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
],
},
],
Expand Down
8 changes: 7 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
Loading