From b156899b71650edc216381206350e77222f87cc2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 30 Jan 2026 17:21:16 +0000 Subject: [PATCH] define condition/page.tsx --- .../[propertyId]/condition/page.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx diff --git a/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx b/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx new file mode 100644 index 00000000..cfb90a4d --- /dev/null +++ b/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx @@ -0,0 +1,19 @@ +import { getPropertyMeta } from "../utils"; + +export default async function Condition(props: { + params: Promise<{ slug: string; propertyId: string }>; +}) { + const params = await props.params; + const propertyMeta = await getPropertyMeta(params.propertyId); + const urpn = propertyMeta.uprn; + + console.log(propertyMeta); + + return ( + <> +
+ TEST +
+ + ) +} \ No newline at end of file