This repository has been archived on 2025-11-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
api/app/page.tsx
2025-10-01 12:51:53 +08:00

11 lines
418 B
TypeScript
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.
export default function Home() {
return (
<div className="min-h-screen flex items-center justify-center bg-slate-50 dark:bg-slate-900">
<div className="text-center p-6">
<h1 className="text-3xl font-bold text-slate-900 dark:text-white mb-4">API v1.6</h1>
<p className="text-slate-600 dark:text-slate-400 mb-6"></p>
</div>
</div>
)
}