updated widgets

This commit is contained in:
2026-02-25 17:35:01 +09:00
parent 787724b09c
commit e4d2966377
43 changed files with 3648 additions and 180 deletions

13
src/app/test/page.tsx Normal file
View File

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