Skip to content

Commit

Permalink
Merge pull request #747 from tailwarden/feature/tech-1139
Browse files Browse the repository at this point in the history
feat: show hiring message in browser console
  • Loading branch information
eneskaya authored Apr 26, 2023
2 parents ade4072 + 2e3000a commit 6926787
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 123 deletions.
22 changes: 22 additions & 0 deletions dashboard/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@ import '../styles/globals.css';
import type { AppProps } from 'next/app';
import Layout from '../components/layout/Layout';

const printHiringMessage = () => {
// eslint-disable-next-line no-console
console.log(`
* ) ( (
' ) /( ) ( )\\( ( ) ( )\\ ) (
( )(_)( /( )\\((_)\\))( ( /( )( (()/( ))\\ (
(_(_()))(_)((_)_((_)()\\ )(_)(()\\ ((_)/((_))\\ )
|_ _((_)_ (_| _(()((_((_)_ ((_) _| (_)) _(_/(
| | / _' || | \\ V V / _' | '_/ _' / -_| ' \\))
|_| \\__,_||_|_|\\_/\\_/\\__,_|_| \\__,_\\___|_||_|
WE'RE HIRING REMOTELY IN 🇫🇷, 🇵🇹 and 🇩🇪!
---> https://jobs.tailwarden.com <---
`);
};

if (typeof window !== 'undefined') {
printHiringMessage();
}

export default function App({ Component, pageProps }: AppProps) {
return (
<Layout>
Expand Down
Loading

0 comments on commit 6926787

Please sign in to comment.