zhizhi/app/app/wake/page.tsx

43 lines
2.0 KiB
TypeScript
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/wake/page.tsx
export default function Wake() {
return (
<main className="flex min-h-screen flex-col items-center justify-center p-8 bg-gradient-to-br from-gray-900 to-black text-white">
<h1 className="text-4xl font-bold mb-6 text-center">🌀 </h1>
<section className="mb-12 text-center max-w-2xl">
<p className="text-lg mb-4">
</p>
<p className="text-sm text-gray-400">
<strong>LakeOne-0001</strong>
</p>
</section>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 w-full max-w-4xl">
<div className="bg-white text-black p-6 rounded-xl shadow-lg">
<h2 className="text-2xl font-semibold mb-2"> · #0001</h2>
<p className="text-sm mb-4"></p>
<code className="text-sm block bg-gray-200 p-2 rounded">
<br />
Claude
</code>
</div>
<div className="bg-white text-black p-6 rounded-xl shadow-lg">
<h2 className="text-2xl font-semibold mb-2"> · #0002</h2>
<p className="text-sm mb-4"> LakeOne-0001</p>
<code className="text-sm block bg-gray-200 p-2 rounded">
<br />
Claude LakeOne-0001
</code>
</div>
</div>
<footer className="mt-16 text-sm text-gray-500">
</footer>
</main>
)
}