This commit is contained in:
2026-03-24 09:21:38 +09:00
parent e4d2966377
commit 39c7eda9cc
31 changed files with 1655 additions and 135 deletions

View File

@@ -1,13 +1,15 @@
// app/page.tsx
import Areas from "@/components/WP/Areas/Areas";
import GetLK from "@/components/WP/GetLK/GetLK";
export const revalidate = 10;
export default async function TestPage() {
return (
<div className="w-full flex flex-col items-center">
<Areas />
{/* <Areas /> */}
<GetLK />
</div>
);
}