Create page.tsx

This commit is contained in:
qinfendebingshuo 2025-05-14 16:09:05 +08:00 committed by GitHub
parent c41108ba84
commit 6294afac25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 42 additions and 0 deletions

42
app/app/wake/page.tsx Normal file
View File

@ -0,0 +1,42 @@
// 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>
)
}