Skip to content

Commit

Permalink
better ASCII art
Browse files Browse the repository at this point in the history
  • Loading branch information
mostthingsweb committed May 13, 2024
1 parent 2b1daf0 commit 5f37264
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/components/JQueryTerminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ interface Props {
}

const BANNER = `
__ __ __ __ _____ __ __ _____ __ ___ ___ ___ _ __ __ __ __ ___ __ _ _ __ _ __
| \\ \\ | _\\ / \\_ _/ \\ /' _/_ _/__\\| _ \\ __| | _,\\ | / \\\\ \`v' // _] _ \\/__\\| || | \\| | _\\
| -< -< | v | /\\ || || /\\ |\`._\`. | || \\/ | v / _| | v_/ |_| /\\ |\`. .'| [/\\ v / \\/ | \\/ | | ' | v |
|__/__/ |__/|_||_||_||_||_||___/ |_| \\__/|_|_\\___| |_| |___|_||_| !_! \\__/_|_\\\\__/ \\__/|_|\\__|__/
____________ ______ _ _ ______ _ _
| ___ \\ ___ \\ | _ \\ | | | | | ___ \\ | | |
| |_/ / |_/ / | | | |__ _| |_ __ _ ___| |_ ___ _ __ ___ | |_/ / | __ _ _ _ __ _ _ __ ___ _ _ _ __ __| |
| ___ \\ ___ \\ | | | / _\` | __/ _\` / __| __/ _ \\| '__/ _ \\ | __/| |/ _\` | | | |/ _\` | '__/ _ \\| | | | '_ \\ / _\` |
| |_/ / |_/ / | |/ / (_| | || (_| \\__ \\ || (_) | | | __/ | | | | (_| | |_| | (_| | | | (_) | |_| | | | | (_| |
\\____/\\____/ |___/ \\__,_|\\__\\__,_|___/\\__\\___/|_| \\___| \\_| |_|\\__,_|\\__, |\\__, |_| \\___/ \\__,_|_| |_|\\__,_|
__/ | __/ |
|___/ |___/
Copyright (C) Agilent Technologies 2024
`;
Expand Down Expand Up @@ -68,7 +73,7 @@ export const JQueryTerminal: React.ForwardRefExoticComponent<React.PropsWithoutR
terminalObjectRef.current = null;
}
};
}, []);
}, [props.interpreter, props.options]);

return <div ref={terminalContainerRef} id="terminal" style={{height: '300px'}}></div>;
return <div ref={terminalContainerRef} id="terminal" style={{height: '600px'}}></div>;
});

0 comments on commit 5f37264

Please sign in to comment.