"use client";

import LandingView from "@/components/LandingView";
import type { ProductPublic } from "@/lib/products";

export default function ProductLandingClient({
  product,
  domain,
}: {
  product: ProductPublic;
  domain: string;
}) {
  return (
    <LandingView
      product={product}
      domain={domain}
      checkoutHref={`/checkout/${product.slug}`}
    />
  );
}
