aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/pixels/page.tsx
blob: cc240cd24586bc2f874ccbd7db440e72970808b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { Metadata } from 'next';
import { PixelsPage } from './PixelsPage';

export default function () {
  return <PixelsPage />;
}

export const metadata: Metadata = {
  title: 'Pixels',
};