Skip to content

Commit

Permalink
Merge pull request #52 from DanGould/flow
Browse files Browse the repository at this point in the history
Fix landing Flow
  • Loading branch information
DanGould authored Jan 18, 2024
2 parents 254ead6 + 365358f commit 70df95f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 26 deletions.
49 changes: 25 additions & 24 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,49 +45,50 @@ If there is a wallet you’d like to see adopt payjoin or you are a wallet devel
<Icon name="monad" class="w-24 text-primary" />
<H1>Payjoin</H1>
<h2 class="text-2xl text-white sm:text-4xl">
A simple protocol to scale Bitcoin, save fees, and preserve privacy all at once
Scale Bitcoin, save fees, and preserve privacy all at once
</h2>
<br />
<div class="flex flex-col w-full sm:flex-row gap-4 sm:w-1/2 justify-center">
<a class="w-full" href="https://payjoindevkit.org/introduction/"
><Button wide>Get Started</Button></a
>
<a class="w-full" href="#why-payjoin"><Button wide>Learn More</Button></a>
<a class="w-full" href="https://payjoindevkit.org/"
><Button wide secondary>Developer Kit</Button></a
>
</div>
</div>
</section>

<section class="bg-tertiary w-full flex flex-col gap-4 sm:gap-14 items-center py-16">
<section
id="why-payjoin"
class="bg-tertiary w-full flex flex-col gap-4 sm:gap-14 items-center py-16"
>
<H2>Why Payjoin?</H2>
<div class="flex flex-col sm:flex-row sm:gap-12 gap-4 w-3/4">
<Card>
<div class="flex flex-col gap-2 text-white">
<strong>Preserves Privacy</strong>
<span
>Payjoin preserves privacy by breaking common assumptions made for traditional
transactions used to spy on bitcoin users
</span>
<h3 class="font-bold">Preserve Privacy</h3>
<p>
Payjoin preserves privacy by breaking the most common method used to spy on bitcoin users
</p>
<Link href="/privacy">Learn More<Icon name="arrow" class="w-4" /></Link>
</div>
</Card>
<Card>
<div class="flex flex-col gap-2 text-white">
<strong>Low Fees, High Scaling</strong>
<span
>Payjoin can settle many transactions at once, allowing higher throughput, time savings,
and opportunistically lower fees
</span>
<h3 class="font-bold">Scale Bitcoin, Lower Fees</h3>
<p>
Payjoin can settle many transactions at once, allowing higher throughput, time savings,
and lower fees
</p>
<Link href="/scale">Learn More<Icon name="arrow" class="w-4" /></Link>
</div>
</Card>
<Card>
<div class="flex flex-col gap-2 text-white">
<strong>Augments Lightning</strong>
<span
>Payjoin allows Lightning nodes to fund and open all their channels in one transaction
<h3 class="font-bold">Augment Lightning</h3>
<p>
Payjoin enables Lightning nodes to fund and open all their channels in one transaction
while maintaining privacy
</span>
</p>
<Link href="/lightning">Learn More<Icon name="arrow" class="w-4" /></Link>
</div>
</Card>
Expand Down Expand Up @@ -173,10 +174,10 @@ If there is a wallet you’d like to see adopt payjoin or you are a wallet devel
<H2>Pay it Forward</H2>
<H2>Join the Community</H2>
</div>
<H3>Payjoin can bring many benefits to Bitcoin, but it needs your help</H3>
<H3
>Join our <Link href="https://payjoin.substack.com/">newsletter</Link> or the <Link
<p class="text-2xl my-2">Payjoin can bring many benefits to Bitcoin, but it needs your help</p>
<p class="text-2xl my-2">
Join our <Link href="https://payjoin.substack.com/">newsletter</Link> and the <Link
href="https://discord.gg/6rJD9R684h">Discord</Link
> to stay up to date with payjoin development</H3
>
> to stay up to date with payjoin development
</p>
</section>
4 changes: 2 additions & 2 deletions src/routes/privacy/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<div>
Satoshi left exactly one privacy problem open in the whitepaper, that transactions with
multiple inputs "necessarily reveal that their inputs were owned by the same owner." In early
bitcoin software, this was true. But nothing prevents one from making a transaction with
inputs from multiple sources. Payjoin is the simplest way to do that.
bitcoin software, this was true. But no consensus rule prevents transactions with inputs from
multiple sources. Payjoin is the simplest solution.
</div>
<br />
<div>
Expand Down

0 comments on commit 70df95f

Please sign in to comment.