This commit is contained in:
2025-04-02 22:23:49 +08:00
parent 63f434fd93
commit 0b41f3ea42
5 changed files with 993 additions and 7 deletions

10
app/ip-test/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
import IpLocationTest from '../components/ipLocationTest';
export default function IpTestPage() {
return (
<div className="container mx-auto p-4 max-w-4xl">
<h1 className="text-2xl font-bold mb-6">IP to Location Test</h1>
<IpLocationTest />
</div>
);
}