Merged compare logic. Removed compare page.

This commit is contained in:
Mike Cao
2025-05-02 12:32:23 -07:00
parent f69f793b87
commit 65ebd736b9
8 changed files with 31 additions and 63 deletions

View File

@@ -1,12 +0,0 @@
import { WebsiteComparePage } from './WebsiteComparePage';
import { Metadata } from 'next';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <WebsiteComparePage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Website Comparison',
};