diff --git a/app/javascript/gabsocial/components/panel/pro_panel.js b/app/javascript/gabsocial/components/panel/pro_panel.js index 86e44f96..9fbf9f6d 100644 --- a/app/javascript/gabsocial/components/panel/pro_panel.js +++ b/app/javascript/gabsocial/components/panel/pro_panel.js @@ -2,6 +2,7 @@ import { injectIntl, defineMessages } from 'react-intl' import { URL_GAB_PRO } from '../../constants' import PanelLayout from './panel_layout'; import Button from '../button' +import Icon from '../icon' import Text from '../text' const messages = defineMessages({ @@ -23,28 +24,44 @@ class ProPanel extends PureComponent { if (isPro) return null + const title = ( + + + Upgrade to Gab + + PRO + + ) + return ( - + + Learn more + + + + + ) }