mirror of
https://github.com/zen-browser/www
synced 2026-04-25 17:14:56 +02:00
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
---
|
|
import { ArrowRight, ChevronRight } from 'lucide-astro'
|
|
import Button from '../components/Button.astro'
|
|
import Description from '../components/Description.astro'
|
|
import Title from '../components/Title.astro'
|
|
import Layout from '../layouts/Layout.astro'
|
|
---
|
|
|
|
<Layout title="Donate - Zen Browser">
|
|
<main class="flex flex-col items-center pb-52 pt-36">
|
|
<div class="mb-24 p-4 text-center lg:w-1/2">
|
|
<Title>Donate!</Title>
|
|
<Description>
|
|
We are a small team of developers working hard to bring you the best
|
|
browsing experience. If you like what we do, please consider supporting
|
|
us.
|
|
</Description>
|
|
</div>
|
|
<div
|
|
class="relative flex w-full flex-col items-center justify-center lg:flex-row"
|
|
>
|
|
<div class="flex flex-col p-8 lg:w-1/3 lg:pr-24">
|
|
<div class="text-6xl font-bold">Patreon</div>
|
|
<Description>
|
|
Patreon allows you to support us with a monthly donation. You can
|
|
choose the level of support that works best for you.
|
|
</Description>
|
|
<div class="mt-6">
|
|
<Button
|
|
isPrimary
|
|
href="https://www.patreon.com/zen_browser"
|
|
class="w-fit"
|
|
>
|
|
Go to Patreon
|
|
<ArrowRight class="size-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div class="hidden h-72 w-[1px] bg-dark opacity-15 lg:block"></div>
|
|
<div class="flex flex-col p-8 lg:w-1/3 lg:pl-24">
|
|
<div class="text-6xl font-bold">Ko-fi</div>
|
|
<Description>
|
|
Ko-fi allows you to support us with a one-time donation. You can
|
|
choose the amount that works best for you. Monthly donations are also
|
|
available.
|
|
</Description>
|
|
<div class="mt-6">
|
|
<Button href="https://ko-fi.com/zen_browser" isPrimary class="w-fit">
|
|
Go to Ko-fi
|
|
<ArrowRight class="size-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</Layout>
|