New compare page.
This commit is contained in:
12
src/app/(main)/websites/[websiteId]/compare/page.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/compare/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Metadata } from 'next';
|
||||
import { ComparePage } from './ComparePage';
|
||||
|
||||
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
||||
const { websiteId } = await params;
|
||||
|
||||
return <ComparePage websiteId={websiteId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Compare',
|
||||
};
|
||||
Reference in New Issue
Block a user