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