fix: clarify generation product naming

This commit is contained in:
2026-05-25 17:10:22 +08:00
parent f21254fa82
commit 2192f15beb
9 changed files with 49 additions and 36 deletions

View File

@@ -12,8 +12,8 @@ const _playfairDisplay = Playfair_Display({
})
export const metadata: Metadata = {
title: "SKG 营销内容工作台",
description: "SKG AI 图片视频和文案创作台",
title: "SKG 生图生视频",
description: "SKG AI 图片视频生成入口",
}
export default function RootLayout({

View File

@@ -142,7 +142,7 @@ export default function LoginPage() {
<section className="login-auth-panel login-source-auth-panel login-source-combo-panel rounded-[8px]">
<div className="login-top-brand" aria-hidden="true">
<img className="login-top-brand__logo" src="/skg-logo-black.svg" alt="" />
<span className="login-top-brand__system"></span>
<span className="login-top-brand__system"></span>
</div>
<div className="login-source-character-strip" aria-hidden="true">
<AnimatedLoginCharacters mood={mood} eyeOffset={eyeOffset} />

View File

@@ -362,7 +362,7 @@ export default function Home() {
<span className="flex h-6 w-6 items-center justify-center rounded-lg bg-cyan-400/12 text-cyan-200">
<Sparkles className="h-3.5 w-3.5" />
</span>
SKG
SKG
</div>
{job ? (
<a href={`/detail/?job=${job.id}`} className="inline-flex items-center gap-1.5 rounded-lg px-2 py-1.5 text-white/52 transition hover:bg-white/8 hover:text-white">
@@ -517,7 +517,7 @@ export default function Home() {
className="inline-flex h-10 items-center justify-center gap-2 rounded-full border border-white/10 bg-white/6 px-4 text-sm font-semibold text-white/72 transition hover:border-cyan-200/24 hover:text-cyan-100"
>
<ExternalLink className="h-4 w-4" />
</a>
<button
type="button"

View File

@@ -1,6 +1,6 @@
# SKG 无限画布
# SKG 生成画布
这是 SKG 营销内容工作台的内部画布模块,部署在主站 `/canvas/` 路径下。
这是 SKG 生图生视频的内部画布模块,部署在主站 `/canvas/` 路径下。
## 内部使用方式

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/skg-logo-black.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SKG 无限画布</title>
<title>SKG 生成画布</title>
</head>
<body>
<div id="app"></div>

View File

@@ -6,7 +6,7 @@
<template #left>
<div class="flex items-center gap-3">
<img src="/skg-logo-black.svg" alt="SKG" class="h-6 w-auto dark:invert" />
<span class="text-sm font-semibold text-[var(--text-secondary)]">营销内容工作台</span>
<span class="text-sm font-semibold text-[var(--text-secondary)]">生图生视频</span>
</div>
</template>
</AppHeader>
@@ -17,7 +17,7 @@
<section class="text-center mb-12">
<div class="flex items-center justify-center gap-4 mb-8">
<img src="/skg-logo-black.svg" alt="SKG" class="h-9 w-auto dark:invert" />
<h1 class="text-2xl md:text-4xl font-bold text-[var(--text-primary)]">SKG 无限画布</h1>
<h1 class="text-2xl md:text-4xl font-bold text-[var(--text-primary)]">SKG 生成画布</h1>
</div>
<!-- Input area | 输入区域 -->
@@ -25,7 +25,7 @@
<div class="bg-[var(--bg-secondary)] rounded-2xl border border-[var(--border-color)] p-4 shadow-sm">
<textarea
v-model="inputText"
placeholder="输入要生成的营销图或视频创意,开始新画布"
placeholder="写提示词,生成图片或视频,结果会放进画布"
class="w-full bg-transparent resize-none outline-none text-[var(--text-primary)] placeholder:text-[var(--text-secondary)] min-h-[80px]"
@keydown.enter.ctrl="handleCreateWithInput"
/>