From ff417c4f1ebfc81f2cf3d5cb6baa60ceef714517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Aaron?= <100827540+reneaaron@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:52:54 +0200 Subject: [PATCH] feat: highlight features of alby account (#701) * feat: highlight features of alby account * fix: update copy * fix: replace backup with support card --- frontend/src/screens/ConnectAlbyAccount.tsx | 113 ++++++++++++++++---- 1 file changed, 90 insertions(+), 23 deletions(-) diff --git a/frontend/src/screens/ConnectAlbyAccount.tsx b/frontend/src/screens/ConnectAlbyAccount.tsx index 06548386..e1e367df 100644 --- a/frontend/src/screens/ConnectAlbyAccount.tsx +++ b/frontend/src/screens/ConnectAlbyAccount.tsx @@ -1,32 +1,99 @@ +import { + CreditCard, + Headphones, + LifeBuoy, + Mail, + PartyPopper, + Zap, +} from "lucide-react"; +import Container from "src/components/Container"; +import TwoColumnLayoutHeader from "src/components/TwoColumnLayoutHeader"; import { LinkButton } from "src/components/ui/button"; +import { + Card, + CardDescription, + CardHeader, + CardTitle, +} from "src/components/ui/card"; export function ConnectAlbyAccount() { return (
-

Connect Your Alby Account

-
- + - -
-

- Your Alby Account gives your hub a lightning address, Nostr address and - zaps, email notifications, fiat topups, priority support, automatic - channel backups, access to podcasting apps & more. -

-
- - Connect now - - - Maybe later - -
+
+ + + + Lightning Address + + Personalized lightning address to receive payments + + + + + + + Email Notifications + + Instant notifications about incoming transactions and more + + + + + + + Support + + Human support via live chat when you need a helping hand + + + + + + + Fiat Topups + + Top up with fiat and get Bitcoin delivered to your Alby Hub + + + + + + + Podcasting 2.0 + + Support your favorite creators by streaming sats + + + + + + + and there's more... + + Claim your Nostr address, discover apps, etc + + + +
+
+ + Connect now + + + Maybe later + +
+
); }