> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tinytrack.io/llms.txt
> Use this file to discover all available pages before exploring further.

# TinyTrack: Simple, Privacy-First Web Analytics

> TinyTrack gives you real-time visitor counts, pageviews, goals, and funnels — no cookies, no consent banners, fully GDPR-compliant.

TinyTrack is a lightweight web analytics platform that shows you the numbers that actually move your product — real-time visitors, pageviews, goal conversions, and funnel drop-offs — without storing any personal data. A single 1 KB script is all it takes to start tracking.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Add TinyTrack to your site in under five minutes
  </Card>

  <Card title="Script Installation" icon="code" href="/tracking/script-installation">
    Drop the tracking snippet into your HTML head
  </Card>

  <Card title="Custom Events" icon="bullseye" href="/tracking/custom-events">
    Track sign-ups, purchases, and any user interaction
  </Card>

  <Card title="API Reference" icon="terminal" href="/api-reference/overview">
    Query your analytics data programmatically
  </Card>
</CardGroup>

## Get up and running

<Steps>
  <Step title="Create your account">
    Sign up at [tinytrack.io](https://tinytrack.io/signup) — no credit card required. Your 14-day free trial starts immediately.
  </Step>

  <Step title="Add your site">
    In the TinyTrack dashboard, click **Add site** and enter your domain (e.g. `blog.acme.dev`).
  </Step>

  <Step title="Install the script">
    Paste the one-line snippet into the `<head>` of every page you want to track:

    ```html theme={null}
    <script defer
      data-site="blog.acme.dev"
      src="https://cdn.tinytrack.io/t.js"></script>
    ```
  </Step>

  <Step title="Watch data flow in">
    Open your TinyTrack dashboard. Visitors appear in real time as soon as the first pageview hits.
  </Step>
</Steps>

## Why TinyTrack?

<CardGroup cols={3}>
  <Card title="No Cookies" icon="cookie-bite">
    Visitor IDs are salted per site, per day, then discarded — no consent banner ever needed.
  </Card>

  <Card title="Real-Time" icon="bolt">
    Pageviews and live visitor counts update the instant they happen, with no 24-hour delay.
  </Card>

  <Card title="1 KB Script" icon="feather">
    The async tracking tag is tiny by design — it won't slow your site or affect Lighthouse scores.
  </Card>
</CardGroup>
