ST-cmovs8psg: notifications-sheet + iOS meta-tags in layout

notifications-sheet.tsx: PushToggle onderin met sectie
'Notificatie-instellingen' en visuele scheidslijn.
app/layout.tsx: appleWebApp.capable, statusBarStyle en
mobile-web-app-capable meta-tags toegevoegd via Next.js Metadata API.
manifest.json had al display: standalone.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scrum4Me Agent 2026-05-07 21:19:26 +02:00
parent 673d905380
commit 7b9ec6ce67
2 changed files with 19 additions and 1 deletions

View file

@ -17,6 +17,7 @@ import {
} from '@/components/ui/sheet'
import { useNotificationsStore } from '@/stores/notifications-store'
import { AnswerModal } from './answer-modal'
import { PushToggle } from './push-toggle'
import { cn } from '@/lib/utils'
import type { NotificationQuestion } from '@/stores/notifications-store'
@ -94,6 +95,12 @@ export function NotificationsSheet({
})}
</ul>
)}
<div className="border-border mt-4 border-t px-4 pt-4 pb-2">
<p className="text-muted-foreground mb-2 text-xs font-medium uppercase tracking-wide">
Notificatie-instellingen
</p>
<PushToggle vapidPublicKey={process.env.NEXT_PUBLIC_VAPID_PUBLIC_KEY} />
</div>
</SheetContent>
</Sheet>