dramaling-vocab-learning/frontend/app/review/page.tsx

56 lines
1.9 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.

'use client'
import { Navigation } from '@/components/shared/Navigation'
export default function ReviewPage() {
return (
<div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100">
<Navigation />
<div className="min-h-screen flex items-center justify-center px-4">
<div className="max-w-lg mx-auto">
<div className="bg-white rounded-xl shadow-lg p-8 text-center">
<div className="text-6xl mb-6">🔧</div>
<h1 className="text-3xl font-bold text-gray-900 mb-4">
</h1>
<p className="text-lg text-gray-600 mb-6">
</p>
<div className="bg-yellow-50 border border-yellow-200 rounded-lg p-4 mb-6">
<h3 className="font-semibold text-yellow-800 mb-2">🚀 </h3>
<ul className="text-yellow-700 text-sm text-left space-y-1">
<li> </li>
<li> </li>
<li> </li>
</ul>
</div>
<div className="space-y-3">
<a
href="/flashcards"
className="block w-full bg-blue-600 text-white py-3 px-6 rounded-lg font-medium hover:bg-blue-700 transition-colors"
>
</a>
<a
href="/dashboard"
className="block w-full border border-gray-300 text-gray-700 py-3 px-6 rounded-lg font-medium hover:bg-gray-50 transition-colors"
>
</a>
</div>
<p className="text-xs text-gray-500 mt-6">
</p>
</div>
</div>
</div>
</div>
)
}