Skip to content

Commit

Permalink
Add basic landing page copy
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Jan 2, 2024
1 parent 3622f13 commit 443237d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions app/routes/_index.tsx
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 added public/counterscale-logo.webp
Binary file not shown.

0 comments on commit 443237d

Please sign in to comment.