mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 11:11:53 +00:00
Fix welcome page welcome text selection (#1508)
This commit is contained in:
@@ -2,6 +2,10 @@ import { createI18n } from 'vue-i18n'
|
|||||||
|
|
||||||
const messages = {
|
const messages = {
|
||||||
en: {
|
en: {
|
||||||
|
welcome: {
|
||||||
|
title: 'Welcome to ComfyUI',
|
||||||
|
getStarted: 'Get Started'
|
||||||
|
},
|
||||||
install: {
|
install: {
|
||||||
installLocation: 'Install Location',
|
installLocation: 'Install Location',
|
||||||
migration: 'Migration',
|
migration: 'Migration',
|
||||||
|
|||||||
@@ -4,11 +4,13 @@
|
|||||||
>
|
>
|
||||||
<div class="flex flex-col items-center justify-center gap-8 p-8">
|
<div class="flex flex-col items-center justify-center gap-8 p-8">
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<h1 class="animated-gradient-text text-glow">Welcome to ComfyUI</h1>
|
<h1 class="animated-gradient-text text-glow select-none">
|
||||||
|
{{ $t('welcome.title') }}
|
||||||
|
</h1>
|
||||||
|
|
||||||
<!-- Get Started Button -->
|
<!-- Get Started Button -->
|
||||||
<Button
|
<Button
|
||||||
label="Get Started"
|
:label="$t('welcome.getStarted')"
|
||||||
icon="pi pi-arrow-right"
|
icon="pi pi-arrow-right"
|
||||||
iconPos="right"
|
iconPos="right"
|
||||||
size="large"
|
size="large"
|
||||||
|
|||||||
Reference in New Issue
Block a user