mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 09:20:00 +02:00
Merge pull request #324 from CoasterFan5/main
Fix links on donation page
This commit is contained in:
commit
7df3fb8212
1 changed files with 15 additions and 11 deletions
|
@ -6,8 +6,8 @@ import Layout from '../layouts/Layout.astro'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Welcome to Zen">
|
<Layout title="Welcome to Zen">
|
||||||
<main class="h-screen flex flex-col justify-center items-center">
|
<main class="flex h-screen flex-col items-center justify-center">
|
||||||
<div class="text-center p-4 mb-24 lg:w-1/2">
|
<div class="mb-24 p-4 text-center lg:w-1/2">
|
||||||
<Title>Donate!</Title>
|
<Title>Donate!</Title>
|
||||||
<Description>
|
<Description>
|
||||||
We are a small team of developers working hard to bring you the best
|
We are a small team of developers working hard to bring you the best
|
||||||
|
@ -15,28 +15,32 @@ import Layout from '../layouts/Layout.astro'
|
||||||
us.
|
us.
|
||||||
</Description>
|
</Description>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full relative flex flex-col lg:flex-row justify-center">
|
<div class="relative flex w-full flex-col justify-center lg:flex-row">
|
||||||
<div class="p-8 lg:pr-24 flex flex-col lg:w-1/3">
|
<div class="flex flex-col p-8 lg:w-1/3 lg:pr-24">
|
||||||
<div class="font-bold text-6xl">Patreon</div>
|
<div class="text-6xl font-bold">Patreon</div>
|
||||||
<Description>
|
<Description>
|
||||||
Patreon allows you to support us with a monthly donation. You can
|
Patreon allows you to support us with a monthly donation. You can
|
||||||
choose the level of support that works best for you.
|
choose the level of support that works best for you.
|
||||||
</Description>
|
</Description>
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<Button isPrimary>Go to Patreon</Button>
|
<Button isPrimary href="https://www.patreon.com/zen_browser"
|
||||||
|
>Go to Patreon</Button
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden lg:block h-full w-[1.5px] bg-dark"></div>
|
<div class="hidden h-full w-[1.5px] bg-dark lg:block"></div>
|
||||||
<div class="p-8 lg:pl-24 flex flex-col lg:w-1/3">
|
<div class="flex flex-col p-8 lg:w-1/3 lg:pl-24">
|
||||||
<div class="font-bold text-6xl">Ko-fi</div>
|
<div class="text-6xl font-bold">Ko-fi</div>
|
||||||
<Description>
|
<Description>
|
||||||
Ko-fi allows you to support us with a one-time donation. You can
|
Ko-fi allows you to support us with a one-time donation. You can
|
||||||
choose the amount that works best for you.
|
choose the amount that works best for you.
|
||||||
</Description>
|
</Description>
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<Button isPrimary>Go to Patreon</Button>
|
<Button href="https://ko-fi.com/zen_browser" isPrimary
|
||||||
|
>Go to Ko-fi</Button
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue