12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
import CompareClient from "@/components/CompareClient";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Compare Properties | Sky and Soil Real Estate",
|
|
description: "Compare up to 4 properties side-by-side to find the perfect home that meets your needs. Analyze price, amenities, and specifications.",
|
|
};
|
|
|
|
export default function ComparePage() {
|
|
return <CompareClient />;
|
|
}
|