-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3622f13
commit 443237d
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,35 @@ | ||
export default function Index() { | ||
return <div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}> | ||
|
||
<div> | ||
<img src="/counterscale-logo-300x300.webp" alt="CounterScale Logo" /> | ||
<div className="flex items-center justify-center border-b-2 pb-12 mb-8"> | ||
<h2 className="font-bold text-6xl"> | ||
Easy self-hosted web analytics built for Cloudflare | ||
</h2> | ||
<div className="max-w-md"> | ||
<img src="/counterscale-logo.webp" alt="CounterScale Logo" /> | ||
</div> | ||
</div> | ||
|
||
<div className="grid grid-cols-2 gap-12"> | ||
<div className="mb-16"> | ||
<h3 className="text-3xl mb-4">Free and open source</h3> | ||
<p>Counterscale is MIT licensed. You run it yourself on your own Cloudflare account.</p> | ||
</div> | ||
|
||
<div className="mb-16"> | ||
<h3 className="text-3xl mb-4">Simple to deploy and maintain</h3> | ||
<p>Counterscale is deployed as a single Cloudflare Worker, with event data stored using Cloudflare Analytics Engine (beta).</p> | ||
</div> | ||
|
||
<div className="mb-16"> | ||
<h3 className="text-3xl mb-4">Don't break the bank</h3> | ||
<p>Pay pennies to handle 100ks of requests on Cloudflare's infrastructure.</p> | ||
</div> | ||
|
||
<div className="mb-16"> | ||
<h3 className="text-3xl mb-4">Privacy focused</h3> | ||
<p>You control your data end-to-end. Data is retained for only 90 days.</p> | ||
</div> | ||
</div> | ||
</ div> | ||
} |
Binary file not shown.