mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 14:35:35 +01:00
New settings layouts. Segment management screen.
This commit is contained in:
parent
2dbcf63eeb
commit
eb7b6978d3
70 changed files with 762 additions and 499 deletions
12
src/app/(main)/websites/[websiteId]/settings/page.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/settings/page.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { SettingsPage } from './SettingsPage';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
||||
const { websiteId } = await params;
|
||||
|
||||
return <SettingsPage websiteId={websiteId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Settings',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue