12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
|
||
|
|
import { WebsiteAnalyticsShell } from '@/components/website-analytics/website-analytics-shell';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Website analytics',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function WebsiteAnalyticsPage() {
|
||
|
|
return <WebsiteAnalyticsShell />;
|
||
|
|
}
|