import type { 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',
};
