Add separate PWA manifest for /capture — own scope, start_url, name

This commit is contained in:
2026-04-26 21:06:48 -04:00
parent 4d087e2ec7
commit bff439b1e9
2 changed files with 41 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Bird Capture',
description: 'Field recorder',
manifest: '/manifest-capture.json',
appleWebApp: {
capable: true,
statusBarStyle: 'black-translucent',
title: 'Capture',
},
};
export default function CaptureLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}