debian-mirror-gitlab/app/assets/javascripts/lib/logger/hello.js
2021-11-11 11:23:49 +05:30

16 lines
617 B
JavaScript

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;',
);
};