PluginProbe
Text Typing – grab attention with animated typing headlines / trunk
Text Typing – grab attention with animated typing headlines vtrunk
2.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
text-typing / dashboard / Pages / Welcome.js

Welcome.js in Text Typing – grab attention with animated typing headlines trunk, at dashboard/Pages/Welcome.js

28 lines 701 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import Welcome from "../../../bpl-tools/Admin/Welcome";
2 import BlocksCard from "../../../bpl-tools/Admin/Blocks/Card";
3
4 import { welcomeInfo } from "../utils/data";
5
6 // The canonical Welcome page (hero, getting-started, changelog, pro-ads) with the
7 // Blocks card slotted directly beneath the banner/getting-started row via afterHero.
8 const WelcomePage = (props) => {
9 const { adminUrl, blocksProps = {} } = props;
10
11 return (
12 <Welcome
13 {...props}
14 {...welcomeInfo(adminUrl)}
15 afterHero={
16 <BlocksCard
17 {...props}
18 {...blocksProps}
19 cardTitle="Blocks"
20 seeAllLink="#/blocks"
21 />
22 }
23 />
24 );
25 };
26
27 export default WelcomePage;
28