mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 09:05:36 +01:00
Updated page titles.
This commit is contained in:
parent
b2a7aaaad0
commit
d5b4da63df
35 changed files with 74 additions and 34 deletions
|
|
@ -1,5 +1,10 @@
|
|||
import TeamProvider from './TeamProvider';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function ({ children, params: { teamId } }) {
|
||||
return <TeamProvider teamId={teamId}>{children}</TeamProvider>;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Teams',
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
import Page from 'app/(main)/reports/page';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default Page;
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Team Reports',
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
import TeamSettingsLayout from './TeamSettingsLayout';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function ({ children, params: { teamId } }) {
|
||||
return <TeamSettingsLayout teamId={teamId}>{children}</TeamSettingsLayout>;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Team Settings',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue