mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 21:27:20 +01:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
import { Metadata } from 'next';
|
|
import App from './App';
|
|
|
|
export default async function ({ children }) {
|
|
return <App>{children}</App>;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: '%s | Umami',
|
|
default: 'Umami',
|
|
},
|
|
};
|