Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,21 @@ const Links = () => {
NIP-05 Service
</div>
</Link>
<Link to="/" className="flex gap-2 items-center">
<Link
to="lightning:dezh@coinos.io"
className="flex gap-2 items-center"
>
<div>
<LightingIcon />
</div>
<div className="text-[#EAB308] font-roboto-mono font-medium text-lg">
Zap Us
</div>
</Link>
<Link to="/" className="flex gap-2 items-center">
<Link
to="nostr:npub1hu47u55pzjw8cdg0t5f2uvh4znrcvnl3pqz3st6p0pfcctzzzqrsplc46u"
className="flex gap-2 items-center"
>
<div>
<NostrIconPink />
</div>
Expand Down Expand Up @@ -74,7 +80,7 @@ const Navbar = () => {
<Links />
</div>
<div className="md:w-2/12 flex justify-end">
<Button variant={"outline"}>
<Button variant={"outline"} className="h-12">
<NostrIconWhite /> Log In
</Button>
{/* {user ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const CheckAvailability = () => {
return (
<section className="space-y-[50px]">
<h1 className="gradient-text text text-center font-bold text-[80px] uppercase max-w-[873px] mx-auto leading-[56px] animate-fade-up ">
Give a better nostr id for yourself
Get a better nostr id for yourself
</h1>
<div className="max-w-[575px] mx-auto ">
<CheckAvailabilityForm />
Expand Down
Loading