diff --git a/app/layout.tsx b/app/layout.tsx index 78b08fe..5cc59ad 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import type { Metadata } from "next"; +import type { Metadata, Viewport } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { Analytics } from "@vercel/analytics/next"; import { Toaster } from "sonner"; @@ -30,6 +30,17 @@ export const metadata: Metadata = { ], }, manifest: "/manifest.json", + appleWebApp: { + capable: true, + statusBarStyle: 'default', + }, + other: { + 'mobile-web-app-capable': 'yes', + }, +}; + +export const viewport: Viewport = { + themeColor: '#ffffff', }; export default function RootLayout({ diff --git a/components/notifications/notifications-sheet.tsx b/components/notifications/notifications-sheet.tsx index 44aeaf6..a161eb2 100644 --- a/components/notifications/notifications-sheet.tsx +++ b/components/notifications/notifications-sheet.tsx @@ -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({ })} )} +
+

+ Notificatie-instellingen +

+ +