summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/lib/logger/hello.js
blob: 18fa35ab55bfc2dd43599f40afdfcfbff4b6dfff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const HANDSHAKE = String.fromCodePoint(0x1f91d);
const MAG = String.fromCodePoint(0x1f50e);

export const logHello = () => {
  // eslint-disable-next-line no-console
  console.log(
    `%cWelcome to GitLab!%c

Does this page need fixes or improvements? Open an issue or contribute a merge request to help make GitLab more lovable. At GitLab, everyone can contribute!

${HANDSHAKE} Contribute to GitLab: https://about.gitlab.com/community/contribute/
${MAG} Create a new GitLab issue: https://gitlab.com/gitlab-org/gitlab/-/issues/new`,
    `padding-top: 0.5em; font-size: 2em;`,
    'padding-bottom: 0.5em;',
  );
};