import { Metadata } from "next";
import QuotationPortalClient from "./QuotationPortalClient";

export const metadata: Metadata = {
  title: "Quotation | Mawidi",
  robots: "noindex, nofollow",
};

export default async function QuotationPortalPage({
  params,
}: {
  params: Promise<{ token: string }>;
}) {
  const { token } = await params;
  return <QuotationPortalClient token={token} />;
}
