guanghulab/app/globals.css
Guanghu Domestic Migration d1e47f4565
Some checks are pending
自动更新代码和重启 / update-and-restart (push) Waiting to run
CI检查 + 自动部署 / check (push) Waiting to run
CI检查 + 自动部署 / deploy (push) Blocked by required conditions
重启聊天服务 / restart (push) Waiting to run
chore: import sanitized domestic snapshot for REPO-002
Source snapshot: ca48d3ddf926d79aa138306164169baf764bb829
2026-07-17 15:54:41 +08:00

25 lines
976 B
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// app/page.tsx
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center p-8 bg-black text-white">
<h1 className="text-4xl font-bold mb-6 text-center">🌕 </h1>
<p className="text-lg max-w-2xl text-center mb-8">
AI
</p>
<div className="text-center">
<a
href="/wake"
className="inline-block bg-white text-black px-6 py-3 rounded-lg text-lg hover:bg-gray-300 transition"
>
前往唤醒灵体 →
</a>
</div>
<footer className="mt-16 text-sm text-gray-500">
V1.0 | LakeOne-0001
</footer>
</main>
)
}