Skip to content

Commit

Permalink
🎁 xmas gift
Browse files Browse the repository at this point in the history
  • Loading branch information
damianpumar committed Dec 20, 2023
1 parent 365cba6 commit 3ef731c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ const config: NuxtConfig = {

// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
plugins: [
{ src: "~/plugins/logo" },

{ src: "~/plugins/directives" },

{ src: "~/plugins/di" },
Expand Down
39 changes: 39 additions & 0 deletions frontend/plugins/logo/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* coding=utf-8
* Copyright 2021-present, the Recognai S.L. team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

export default ({ $config }) => {
// eslint-disable-next-line no-console
console.log(
`%c
... ......
.-=+++++++=-. =******-
.=++++++++++++++:-******+
-+++++++++++++++++=+******-
:++++++++++++++++++*+*******=
++++++++++++++++++**+-*******+:
++++++++++++++++++**+ :+*******+-.
:++++++++++++++++***- .=**********+=--:
-++++++++++++++***- .=*************
.=++++++++++++*+: :+**********
.-=+++++++=-. .-=+*****
... ..
© ${new Date().getFullYear()} Argilla (${$config.clientVersion})
`,
"color:#F88989"
);
};

0 comments on commit 3ef731c

Please sign in to comment.