diff --git a/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx b/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx index 72fdeb8c..081ed021 100644 --- a/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx +++ b/src/app/portfolio/[slug]/building-passport/[propertyId]/condition/page.tsx @@ -1,6 +1,7 @@ import { getPropertyMeta } from "../utils"; import { db } from "@/app/db/db"; import ElementTable, { ElementGroup, Element } from "./components/ElementTable"; +import { Tabs, TabsList, TabsTrigger, TabsContent } from "@/app/shadcn_components/ui/tabs"; type ConditionPageProps = { params: { @@ -65,15 +66,28 @@ export default async function Condition({ params }: ConditionPageProps) { return (
-

Property Condition

-

- UPRN: {uprn}
- Survey Date: {survey.date}
- Source: {survey.source} -

- - {/* Client-side interactive table */} - + + + +
Survey Data
+
+ +
Renewals Timeline
+
+ +
Decent Homes
+
+
+ + + + +
Coming soon...
+
+ +
Coming soon...
+
+
); }