Skip to content
Open
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
7 changes: 7 additions & 0 deletions components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ const SocialsPopover = (
pod
</a>
<span className='mx-2 text-muted'> \ </span>
<a
href='https://SWAG.btc.pub/SN' className='nav-link p-0 d-inline-flex'
target='_blank' rel='noreferrer'
>
swag
</a>
<span className='mx-2 text-muted'> \ </span>
<a
href='https://www.plebpoet.com/zines.html' className='nav-link p-0 d-inline-flex'
target='_blank' rel='noreferrer'
Expand Down
3 changes: 2 additions & 1 deletion pages/satistics/graphs/[when].js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ export default function Growth ({ ssrData }) {
<div className='text-center text-muted fw-bold'>sats stacked</div>
<WhenAreaChart data={stackingGrowth} />
</Col>
</Row>
<Row>
<Col className='mt-3'>
<div className='text-center text-muted fw-bold'>sats spent</div>
<WhenAreaChart data={spendingGrowth} />
Expand All @@ -80,7 +82,6 @@ export default function Growth ({ ssrData }) {
<div className='text-center text-muted fw-bold'>spend counts</div>
<WhenLineChart data={itemGrowth} />
</Col>
<Col className='mt-3' />
</Row>
</Layout>
)
Expand Down
6 changes: 6 additions & 0 deletions pages/stackers/[sub]/[when].js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ export default function Growth ({ ssrData }) {
<div className='text-center text-muted fw-bold'>sats stacked</div>
<WhenAreaChart data={stackingGrowth} />
</Col>
</Row>
<Row>
<Col className='mt-3'>
<div className='text-center text-muted fw-bold'>sats spent</div>
<WhenAreaChart data={spendingGrowth} />
Expand All @@ -104,6 +106,8 @@ export default function Growth ({ ssrData }) {
<div className='text-center text-muted fw-bold'>unique stackers</div>
<WhenLineChart data={stackerGrowth} />
</Col>
</Row>
<Row>
<Col className='mt-3'>
<div className='text-center text-muted fw-bold'>unique spenders</div>
<WhenLineChart data={spenderGrowth} />
Expand All @@ -114,6 +118,8 @@ export default function Growth ({ ssrData }) {
<div className='text-center text-muted fw-bold'>spend counts</div>
<WhenLineChart data={itemGrowth} />
</Col>
</Row>
<Row>
<Col className='mt-3'>
{sub === 'all' && <div className='text-center text-muted fw-bold'>registrations</div>}
<WhenAreaChart data={registrationGrowth} />
Expand Down