Skip to content

Commit

Permalink
Update console ascii art
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Nov 28, 2023
1 parent 254de76 commit cfd6d82
Showing 1 changed file with 26 additions and 20 deletions.
46 changes: 26 additions & 20 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,33 @@ import { createRoot, render } from '@wordpress/element';
import App from './app';

const WP_ADM_PAGE_ROOT_ELEMENT = 'wppbh-app';
const W_ASCI = `
Welcome to Bluehost!
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@(((((((((@@((((((((((@@(((((((((@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
`;

// eslint-disable-next-line no-console
console.log( W_ASCI );
console.log(`

Check failure on line 11 in src/index.js

View workflow job for this annotation

GitHub Actions / ESLint

Insert `⏎↹`

Check failure on line 11 in src/index.js

View workflow job for this annotation

GitHub Actions / ESLint

Insert `⏎↹`
%cWelcome to Bluehost!
%c
██████████████████████████████████████
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
██████████████████████████████████████
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
██████████████████████████████████████
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
███ ██ ██ ███
██████████████████████████████████████
`,
'color: #196bde; font-size: 2em; font-weight: 900;',
'background: #fff; color: #196bde; font-weight: 400;'
);

Check failure on line 34 in src/index.js

View workflow job for this annotation

GitHub Actions / ESLint

Delete `⏎`

Check failure on line 34 in src/index.js

View workflow job for this annotation

GitHub Actions / ESLint

Delete `⏎`


const WPPBHRender = () => {
const DOM_ELEMENT = document.getElementById( WP_ADM_PAGE_ROOT_ELEMENT );
Expand Down

0 comments on commit cfd6d82

Please sign in to comment.