umami/src/app/(main)/pixels/[pixelId]/page.tsx
2025-08-21 01:33:20 -07:00

12 lines
301 B
TypeScript

import { PixelPage } from './PixelPage';
import { Metadata } from 'next';
export default async function ({ params }: { params: Promise<{ pixelId: string }> }) {
const { pixelId } = await params;
return <PixelPage pixelId={pixelId} />;
}
export const metadata: Metadata = {
title: 'Pixel',
};