Spaces:
Sleeping
Sleeping
| 'use client'; | |
| import { PushNotificationPoC } from '@/components/notifications/push-notification-poc'; | |
| export default function WebPushPoCPage() { | |
| return ( | |
| <div className="min-h-screen bg-gray-50 p-8"> | |
| <div className="mx-auto max-w-2xl"> | |
| <h1 className="mb-4 text-3xl font-bold">Web Push通知 PoC</h1> | |
| <p className="mb-8 text-gray-600">Webプッシュ通知機能のテストページです。</p> | |
| <PushNotificationPoC /> | |
| </div> | |
| </div> | |
| ); | |
| } | |