-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/nostr-nip-19
* master: (38 commits) Update translation files Update translation files Update translation files Update translation files fix(nostr): re-encrypt nostr key on pw change #1925 (#1930) test(e2e): fix alby wallet tests #1848 test(e2e): fix alby wallet tests #1848 Update translation files Translated using Weblate (German) fix: copy chore: add forgot password link fix: copy fix: copy chore: remove Settings link from navbar Translated using Weblate (German) Update all development Yarn dependencies (2022-12-31) Update react-router-dom to version 6.6.1 fix: unit test query casing chore: update lightning and bitcoin casing fix: rename Discover component ...
- Loading branch information
Showing
37 changed files
with
995 additions
and
1,096 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
type Props = { | ||
title: string; | ||
description: string; | ||
content: React.ReactNode; | ||
actions: React.ReactNode; | ||
}; | ||
|
||
function ConnectorPath({ title, description, content, actions }: Props) { | ||
return ( | ||
<div className="shadow-lg p-12 rounded-xl bg-white dark:bg-surface-02dp text-center"> | ||
<h1 className="text-2xl font-bold dark:text-white">{title}</h1> | ||
<p className="text-gray-500 mt-6 dark:text-neutral-400">{description}</p> | ||
<div className="h-56 flex flex-col justify-center items-center"> | ||
{content} | ||
</div> | ||
<div className="flex gap-4">{actions}</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default ConnectorPath; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.