From f7c85894b269b445db5f06ae511bbbe8259a5d6f Mon Sep 17 00:00:00 2001 From: Marko Saric Date: Wed, 22 Apr 2026 16:32:03 +0200 Subject: [PATCH] front page --- docs/introduction.md | 134 +++++++++++++++++++++++++++++++++++-------- src/css/custom.css | 62 ++++++++++++++++++++ 2 files changed, 172 insertions(+), 24 deletions(-) diff --git a/docs/introduction.md b/docs/introduction.md index 4ada7193..1b33a04a 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -3,38 +3,124 @@ title: Welcome slug: / --- -import useBaseUrl from '@docusaurus/useBaseUrl'; +[Plausible Analytics](https://plausible.io/) is a simple, privacy-friendly alternative to Google Analytics. No cookies, no personal data collection, no consent banners required. One lightweight script, one easy-to-read dashboard. Explore the [live demo](https://plausible.io/plausible.io) to see what it looks like. -[Plausible Analytics](https://plausible.io/) gives you simple, privacy-friendly website analytics without cookies or personal data. It's trusted by thousands of subscribers as an alternative to Google Analytics that's easy to set up and understand. We're completely independent, self-funded and bootstrapped. Read more [about us](https://plausible.io/about). +
-## New to Plausible? Start here - -1. [Register for an account](register-account.md) -2. [Add your website details](add-website.md) -3. [Add the snippet to your website](plausible-script.md) -4. [Check if Plausible is installed correctly](troubleshoot-integration.md) +
+

New to Plausible? Start here

+

Get set up and start exploring your data.

+ +
-Once you're set up, explore the [stats dashboard](guided-tour.md) to see your data. +
+

Stats dashboard

+

One dashboard with all your essential stats. No sub-menus, no custom reports to build.

+ +
-## Popular topics +
+

Website settings

+

Manage your site configuration and data.

+ +
-| Topic | Description | -| -------------------------------------------------- | ---------------------------------------------------------- | -| [Goal conversions](goal-conversions.md) | Track signups, purchases, downloads and other actions | -| [Funnel analysis](funnel-analysis.md) | Follow the visitor journey from landing page to conversion | -| [Ecommerce revenue](ecommerce-revenue-tracking.md) | Attribute revenue to your marketing campaigns and sources | -| [Consolidated view](consolidated-views.md) | See stats across all your sites in one dashboard | -| [UTM campaigns](top-referrers.md) | Track your marketing campaigns with UTM tags | -| [Stats API](stats-api.md) | Build custom dashboards and integrations | +
+

Account settings

+

Manage your personal account and preferences.

+ +
-## Get the most out of Plausible +
+

Team and account

+

Manage access, sharing and notifications for your team.

+ +
-See our full guide on [getting the most out of your Plausible experience](your-plausible-experience.md) for tips on email reports, Search Console integration, team collaboration and more. +
+

Billing

+

Manage your subscription, invoices and plan.

+ +
-Can't find what you're looking for? Please do [contact us](https://plausible.io/contact) for assistance. +
+

Goals and conversion tracking

+

Track what matters beyond pageviews: signups, purchases, clicks, form completions.

+ +
-If you have a feature request or are wondering about what's coming up next, take a look at [our feedback board](https://feedback.plausible.io) and [roadmap](https://feedback.plausible.io/roadmap). +
+

API

+

Query your data, send events and manage sites programmatically.

+ +
-
- Plausible Analytics
+ +--- + +This page covers the most common topics. Browse the full sidebar or use the search box to find anything not listed here. + +Can't find what you're looking for? [Contact us](https://plausible.io/contact). Have a feature request? Check our [feedback board](https://feedback.plausible.io) and [roadmap](https://feedback.plausible.io/roadmap). diff --git a/src/css/custom.css b/src/css/custom.css index 7a42b64e..cd4c05de 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -551,4 +551,66 @@ html[data-theme='dark'] { .DocSearch-Commands-Key svg path { stroke-width: 2 !important; +} + +/* Docs home page card grid */ +.docs-card-grid { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 1.5rem; + margin: 1.5rem 0 2rem; +} + +@media (max-width: 768px) { + .docs-card-grid { + grid-template-columns: 1fr; + } +} + +.docs-card { + border: 1px solid var(--zinc-200); + border-radius: 8px; + padding: 1.25rem 1.5rem; +} + +[data-theme='dark'] .docs-card { + border-color: var(--zinc-700); +} + +.docs-card h3 { + margin-top: 0; + margin-bottom: 0.5rem; + font-size: 1rem; + font-weight: 600; +} + +.docs-card > p { + color: var(--zinc-500); + font-size: 0.875rem; + margin-bottom: 0.75rem; +} + +[data-theme='dark'] .docs-card > p { + color: var(--zinc-400); +} + +.docs-card ul, +.docs-card ol { + margin: 0; + padding-left: 1.1rem; + font-size: 0.875rem; +} + +.docs-card ul li, +.docs-card ol li { + margin-bottom: 0.3rem; +} + +.docs-card ul li:last-child, +.docs-card ol li:last-child { + margin-bottom: 0; +} + +.docs-card-full { + grid-column: 1 / -1; } \ No newline at end of file