feat(app): 重写主页为游戏封面(CRT扫描线、霓虹发光、像素字体、大厂黑话装饰)

This commit is contained in:
Cloud Bot
2026-03-21 07:56:57 +00:00
parent 16bb788e07
commit d01ea7d73d

View File

@@ -1,33 +1,148 @@
'use client';
'use client'
import { ImageEditor, ImageEditorHandle } from '@/components/image-editor';
import { NovaChat } from '@/components/nova-sdk';
import { useBuildConversationConnect } from '@/components/nova-sdk/hooks';
import { useImages } from '@/components/nova-sdk/store/useImages';
import { useRef } from 'react';
import Link from 'next/link'
const ChatWithImageEditor = () => {
const imageEditorRef = useRef<ImageEditorHandle>(null);
const { conversationId, platformConfig } = useBuildConversationConnect();
useImages(imageEditorRef)
// 背景装饰黑话词条
const BUZZ_WORDS = [
'对齐', '赋能', '闭环', '拉通', '复盘', '抓手', '颗粒度',
'落地', '沉淀', '方法论', '协同', '降本增效', '去重复化',
'OKR', 'KPI', 'P8', 'P9', '内卷', '高优', '紧急拉会',
'JIRA', '绩效', 'HC冻结', '组织架构调整', '并行推进',
'向上管理', '自驱力', '全链路', '数据驱动', '业务增长',
]
export default function GameCover() {
return (
<div className="w-full h-screen flex">
<div className="w-1/2 flex-shrink-0">
{conversationId && (
<ImageEditor taskId={conversationId} ref={imageEditorRef} />
)}
</div>
<div className="w-1/2">
<NovaChat
platformConfig={platformConfig}
conversationId={conversationId}
agentId={platformConfig.agentId}
panelMode={'dialog'}
/>
</div>
</div>
);
};
<main
className="crt-overlay relative w-full min-h-screen flex flex-col items-center justify-center overflow-hidden"
style={{ backgroundColor: '#0F0F23' }}
>
{/* CRT 流动扫描线 */}
<div className="game-cover-scanline" />
export default ChatWithImageEditor;
{/* 背景装饰:大厂黑话浮字 */}
<div
className="absolute inset-0 pointer-events-none select-none overflow-hidden"
aria-hidden="true"
>
{BUZZ_WORDS.map((word, i) => {
const top = (i * 37 + 7) % 95
const left = (i * 53 + 13) % 90
const size = 12 + (i % 5) * 4
const rotation = (i % 2 === 0 ? 1 : -1) * (5 + (i % 15))
return (
<span
key={word}
className="font-vt323 absolute"
style={{
top: `${top}%`,
left: `${left}%`,
fontSize: `${size}px`,
color: '#A78BFA',
opacity: 0.07 + (i % 4) * 0.02,
transform: `rotate(${rotation}deg)`,
whiteSpace: 'nowrap',
}}
>
{word}
</span>
)
})}
</div>
{/* 中央主卡片 */}
<div
className="neon-border relative z-10 flex flex-col items-center gap-6 px-10 py-12 rounded-2xl"
style={{
backgroundColor: 'rgba(15, 15, 35, 0.85)',
backdropFilter: 'blur(12px)',
maxWidth: '600px',
width: '90%',
}}
>
{/* 游戏主标题 */}
<h1
className="neon-title font-pixel text-center leading-relaxed"
style={{ fontSize: 'clamp(18px, 4vw, 28px)', color: '#A78BFA' }}
>
</h1>
{/* 副标题 */}
<p
className="font-vt323 text-center"
style={{ fontSize: '28px', color: '#E2E8F0', letterSpacing: '0.1em' }}
>
</p>
{/* 英文副标 */}
<p
className="font-pixel text-center"
style={{ fontSize: '10px', color: '#7C3AED', letterSpacing: '0.3em' }}
>
THE LAST GRINDER
</p>
{/* 分割线 */}
<div
className="w-full"
style={{ height: '1px', background: 'linear-gradient(90deg, transparent, #7C3AED, transparent)' }}
/>
{/* 描述文字 */}
<p
className="font-vt323 text-center"
style={{ fontSize: '22px', color: '#A78BFA', lineHeight: 1.6 }}
>
KPI VP
<br />
线 HC
</p>
{/* 开始游戏按钮 */}
<Link
href="/game"
className="font-pixel text-white rounded-lg transition-all duration-200 cursor-pointer"
style={{
backgroundColor: '#F43F5E',
padding: '14px 32px',
fontSize: '12px',
letterSpacing: '0.1em',
boxShadow: '0 0 20px rgba(244, 63, 94, 0.4)',
}}
onMouseEnter={e => {
const el = e.currentTarget as HTMLAnchorElement
el.style.opacity = '0.9'
el.style.transform = 'translateY(-2px)'
el.style.boxShadow = '0 0 30px rgba(244, 63, 94, 0.6)'
}}
onMouseLeave={e => {
const el = e.currentTarget as HTMLAnchorElement
el.style.opacity = '1'
el.style.transform = 'translateY(0)'
el.style.boxShadow = '0 0 20px rgba(244, 63, 94, 0.4)'
}}
>
</Link>
{/* 提示文字 */}
<p
className="font-vt323 text-center"
style={{ fontSize: '16px', color: '#7C3AED', opacity: 0.7 }}
>
PRESS START
</p>
</div>
{/* 底部版权 */}
<footer
className="absolute bottom-4 left-0 right-0 text-center font-pixel pointer-events-none"
style={{ fontSize: '8px', color: '#7C3AED', opacity: 0.5, letterSpacing: '0.15em' }}
>
© 2026 &nbsp;|&nbsp; ALL YOUR KPI ARE BELONG TO US
</footer>
</main>
)
}