@@ -4,7 +4,6 @@ import { useSystemStore } from '@renderer/store/system'
4
4
import { useUserStore } from ' @renderer/store/user'
5
5
import { nowTimestamp } from ' @renderer/utils/date-util'
6
6
import { simulateThreadWait } from ' @renderer/utils/thread-util'
7
- import { sys } from ' typescript'
8
7
import { nextTick , onMounted , reactive , toRefs } from ' vue'
9
8
10
9
const userStore = useUserStore ()
@@ -53,6 +52,10 @@ onMounted(() => {
53
52
<template >
54
53
<div class =" welcome-page z-index-max" @click =" systemStore.isWelcomeShow = false" >
55
54
<div class =" provider-list" >
55
+ <div class =" provider-list-title" >
56
+ <div class =" provider-list-title-left" >{{ $t('welcomePage.title') }}</div >
57
+ <div class =" provider-list-title-right" >© ; 2024 Junki</div >
58
+ </div >
56
59
<AssistantAvatar
57
60
v-for =" (p, index) in providers"
58
61
:key =" p"
@@ -74,6 +77,7 @@ onMounted(() => {
74
77
top : 0 ;
75
78
left : 0 ;
76
79
display : flex ;
80
+ flex-direction : column ;
77
81
align-items : center ;
78
82
justify-content : center ;
79
83
@@ -83,6 +87,23 @@ onMounted(() => {
83
87
flex-wrap : wrap ;
84
88
gap : 40px ;
85
89
90
+ .provider-list-title {
91
+ width : 100% ;
92
+ display : flex ;
93
+ align-items : flex-end ;
94
+ justify-content : space-between ;
95
+
96
+ .provider-list-title-left {
97
+ font-size : var (--font-size-xl );
98
+ font-weight : 500 ;
99
+ }
100
+
101
+ .provider-list-title-right {
102
+ color : var (--color-text-2 );
103
+ font-size : var (--font-size-sm );
104
+ }
105
+ }
106
+
86
107
.provider-item {
87
108
opacity : 0 ;
88
109
transition : all 500ms linear ;
0 commit comments