17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
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}</>;
|
|
}
|