guanghulab/app/globals.css
2026-05-10 13:12:44 +08:00

25 lines
976 B
CSS
Raw 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>
)
}