mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 19:15:37 +01:00
Refactored website components. New layout.
This commit is contained in:
parent
6e41ba2e2c
commit
06f76dda13
35 changed files with 1159 additions and 987 deletions
6
src/app/(main)/websites/[websiteId]/utm/UTMPage.tsx
Normal file
6
src/app/(main)/websites/[websiteId]/utm/UTMPage.tsx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
'use client';
|
||||
import { Column } from '@umami/react-zen';
|
||||
|
||||
export function UTMPage({ websiteId }: { websiteId: string }) {
|
||||
return <Column>Goals {websiteId}</Column>;
|
||||
}
|
||||
12
src/app/(main)/websites/[websiteId]/utm/page.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/utm/page.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Metadata } from 'next';
|
||||
import { UTMPage } from './UTMPage';
|
||||
|
||||
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
||||
const { websiteId } = await params;
|
||||
|
||||
return <UTMPage websiteId={websiteId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'UTM Parameters',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue