mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 08:51:24 +00:00
* add Invite to the left nav * fix: #2154 - only set latest content if we are on page 1 of a channel * lower priority for channel/date on home page * add gerbil to 'all caught up' subscription view * fix: spacing on items in home page scrollable list * color improvements on homepage for titles/help message * fix: stroke width for svg inside button * fix: grid layout on large screens * i give up - related on the right side always * fix: hidden claims message spacing * general spacing improvements * fix: nsfw file page background * remove comment
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import Button from 'component/button';
|
|
import RewardSummary from 'component/rewardSummary';
|
|
// import ShapeShift from 'component/shapeShift';
|
|
import Page from 'component/page';
|
|
|
|
const GetCreditsPage = () => (
|
|
<Page>
|
|
<RewardSummary />
|
|
{/*
|
|
Removing Shapeshift after they switched to user accounts
|
|
Ideally most of the redux logic should be able to be re-used if we switch to another company
|
|
Or find a way to use ShapShift with an account?
|
|
<ShapeShift />
|
|
*/}
|
|
<section className="card card--section">
|
|
<header className="card__header">
|
|
<h2 className="card__title">{__('More Ways To Get LBRY Credits')}</h2>
|
|
<p className="card__subtitle">
|
|
{
|
|
'LBRY credits can be purchased on exchanges, earned for contributions, for mining, and more.'
|
|
}
|
|
</p>
|
|
</header>
|
|
|
|
<div className="card__content">
|
|
<div className="card__actions">
|
|
<Button
|
|
button="primary"
|
|
href="https://lbry.io/faq/earn-credits"
|
|
label={__('Read More')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</Page>
|
|
);
|
|
|
|
export default GetCreditsPage;
|