From 2c899f60571184d263042d127fece5e7727e90c1 Mon Sep 17 00:00:00 2001 From: RockYang Date: Thu, 16 Jan 2025 11:19:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E6=B5=8F=E8=A7=88=E5=99=A8=E6=8E=A7?= =?UTF-8?q?=E5=88=B6=E5=8F=B0=E8=BE=93=E5=87=BA=20Banner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/App.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/web/src/App.vue b/web/src/App.vue index ba8f62e8..2f558ef2 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -92,6 +92,24 @@ const connect = () => { }); store.setSocket(_socket); }; + +// 打印 banner +const banner = ` + .oooooo. oooo .o. ooooo + d8P' 'Y8b 888 .888. 888 +888 .ooooo. .ooooo. 888 oooo .8"888. 888 +888 d88' 88b d88' 88b 888 .8P' .8' 888. 888 +888 ooooo 888ooo888 888ooo888 888888. .88ooo8888. 888 +'88. .88' 888 .o 888 .o 888 88b. .8' 888. 888 + Y8bood8P' Y8bod8P' Y8bod8P' o888o o888o o88o o8888o o888o`; +console.log("%c" + banner + "", "color: purple;font-size: 18px;"); + +console.log("%c感谢大家为 GeekAI 做出的贡献!", "color: green;font-size: 40px;font-family: '微软雅黑';"); +console.log( + "%c项目源码:https://github.com/yangjian102621/geekai %c 您的 star 对我们非常重要!", + "color: green;font-size: 20px;font-family: '微软雅黑';", + "color: red;font-size: 20px;font-family: '微软雅黑';" +);