fix: simplify visible brand to skg logo
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -142,7 +142,6 @@ 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>
|
||||
</div>
|
||||
<div className="login-source-character-strip" aria-hidden="true">
|
||||
<AnimatedLoginCharacters mood={mood} eyeOffset={eyeOffset} />
|
||||
|
||||
@@ -358,11 +358,8 @@ export default function Home() {
|
||||
<Toaster richColors position="top-center" />
|
||||
<div className="flex min-h-screen flex-col">
|
||||
<header className="flex h-14 shrink-0 items-center justify-between px-4 text-xs text-white/42 sm:px-6">
|
||||
<div className="inline-flex items-center gap-2">
|
||||
<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 生图生视频
|
||||
<div className="inline-flex h-8 items-center rounded-full bg-white px-3 shadow-[0_10px_30px_rgba(0,0,0,0.24)]">
|
||||
<img src="/skg-logo-black.svg" alt="SKG" className="h-4 w-auto" />
|
||||
</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 +514,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"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# SKG 生成画布
|
||||
# SKG 画布
|
||||
|
||||
这是 SKG 生图生视频的内部画布模块,部署在主站 `/canvas/` 路径下。
|
||||
这是 SKG 营销内容生产平台的内部画布模块,部署在主站 `/canvas/` 路径下。
|
||||
|
||||
## 内部使用方式
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
<!-- Header | 顶部导航 -->
|
||||
<AppHeader>
|
||||
<template #left>
|
||||
<div class="flex items-center gap-3">
|
||||
<div class="flex h-8 items-center rounded-full bg-white px-3 shadow-sm">
|
||||
<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>
|
||||
</div>
|
||||
</template>
|
||||
</AppHeader>
|
||||
@@ -15,9 +14,9 @@
|
||||
<main class="max-w-5xl mx-auto px-4 py-8 md:py-16">
|
||||
<!-- Welcome section | 欢迎区域 -->
|
||||
<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>
|
||||
<div class="flex items-center justify-center mb-8">
|
||||
<img src="/skg-logo-black.svg" alt="SKG" class="h-12 w-auto dark:invert" />
|
||||
<h1 class="sr-only">SKG</h1>
|
||||
</div>
|
||||
|
||||
<!-- Input area | 输入区域 -->
|
||||
|
||||
Reference in New Issue
Block a user