-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jeesun Kim
authored and
Jeesun Kim
committed
Mar 5, 2024
1 parent
fa09019
commit a97a399
Showing
2 changed files
with
49 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,29 @@ | ||
"use client"; | ||
|
||
import { Card, Link, Text, Button, Icon } from "@stellar/design-system"; | ||
|
||
import { NextLink } from "@/components/NextLink"; | ||
|
||
export default function CreateAccount() { | ||
return <div>Create Account</div>; | ||
return ( | ||
<Card> | ||
<div className="CardText"> | ||
<Text size="lg" as="h1" weight="medium"> | ||
Keypair Generator | ||
</Text> | ||
|
||
<Text size="sm" as="p"> | ||
These keypairs can be used on the Stellar network where one is | ||
required. For example, it can be used as an account master key, | ||
account signer, and/or as a stellar-core node key. | ||
</Text> | ||
</div> | ||
|
||
<div className="padding-top-30"> | ||
<Button size="md" variant="tertiary"> | ||
Generate keypair | ||
</Button> | ||
</div> | ||
</Card> | ||
); | ||
} |
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