-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
5c18866
commit e54b3e2
Showing
3 changed files
with
150 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
.row { | ||
align-items: center; | ||
display: grid; | ||
gap: 80px; | ||
grid-template-columns: 400px 400px; | ||
} | ||
|
||
.column { | ||
display: grid; | ||
grid-template-rows: fit-content(2rem) fit-content(1rem) 300px; | ||
grid-template-columns: 400px; | ||
justify-items: center; | ||
} | ||
|
||
.address { | ||
display: inline-block; | ||
background: #fff; | ||
border: 1px solid #000; | ||
padding: 1rem; | ||
font-family: monospace; | ||
border-radius: .25rem .25rem 0 0; | ||
border-bottom: none; | ||
width: 100%; | ||
text-align: center; | ||
} | ||
|
||
.qrcode { | ||
border: 1px solid #000; | ||
width: 100%; | ||
} | ||
|
||
.label { | ||
display: inline-block; | ||
padding: .5rem; | ||
border-radius: .25rem; | ||
color: #fff; | ||
} |
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,20 +1,47 @@ | ||
import type { NextPage } from 'next'; | ||
import Head from 'next/head'; | ||
import type { NextPage } from "next"; | ||
import Head from "next/head"; | ||
import css from "./Cryptocurrency.module.scss"; | ||
|
||
const Whishlist: NextPage = () => { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Криптовалюта • B4CKSP4CE</title> | ||
<meta name="description" content="Список вещей, которые Бэкспейс хочет получить" /> | ||
<meta name="keywords" content="b4cksp4ce, backspace, бэкспейс, хакспейс, хакспейс спб" /> | ||
<meta | ||
name="description" | ||
content="Список вещей, которые Бэкспейс хочет получить" | ||
/> | ||
<meta | ||
name="keywords" | ||
content="b4cksp4ce, backspace, бэкспейс, хакспейс, хакспейс спб" | ||
/> | ||
</Head> | ||
<h1>Пожертвования в криптовалюте</h1> | ||
<article> | ||
<p>WIP</p> | ||
</article> | ||
<section className={css.row}> | ||
<section className={css.column}> | ||
<header> | ||
<h2>Bitcoin</h2> | ||
</header> | ||
<span className={css.address}> | ||
bc1q7l2mgs8nutv27q02wewqnalkcdps5u7c2sqy90 | ||
</span> | ||
<div className={css.qrcode}></div> | ||
</section> | ||
<section className={css.column}> | ||
<header> | ||
<h2> | ||
USDT | ||
<span className={css.label}>TRC20</span> | ||
</h2> | ||
</header> | ||
<span className={css.address}> | ||
TA4S8uyCC3ndcD2LMj3CVSWhswqbJxWV2e | ||
</span> | ||
<div className={css.qrcode}></div> | ||
</section> | ||
</section> | ||
</> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default Whishlist; |
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