AnalyticsUpgrade.js
5 years ago
Dashboard.js
4 years ago
User.js
3 years ago
Video.js
3 years ago
illustration.js
5 years ago
AnalyticsUpgrade.js
31 lines
| 1 | const { __ } = wp.i18n; |
| 2 | |
| 3 | import Illustration from "./illustration"; |
| 4 | const { Flex, FlexItem, FlexBlock } = wp.components; |
| 5 | |
| 6 | export default () => { |
| 7 | return ( |
| 8 | <Flex style={{ padding: "30px", background: "#fff" }}> |
| 9 | <FlexItem> |
| 10 | <Illustration width="250px" /> |
| 11 | </FlexItem> |
| 12 | <FlexBlock style={{ marginLeft: "20px" }}> |
| 13 | <h1>{__("Get detailed video insights.", "presto-player")}</h1> |
| 14 | <p> |
| 15 | {__( |
| 16 | "Upgrade to Pro and get video insights like plays, watch-time, and drop off numbers.", |
| 17 | "presto-player" |
| 18 | )} |
| 19 | </p> |
| 20 | <a |
| 21 | href="https://prestoplayer.com" |
| 22 | target="_blank" |
| 23 | className="button button-primary" |
| 24 | > |
| 25 | {__("Learn More", "presto-player")} |
| 26 | </a> |
| 27 | </FlexBlock> |
| 28 | </Flex> |
| 29 | ); |
| 30 | }; |
| 31 |