From 408433190c20a92b0918c0ca35c1cb6a9a56f69a Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 26 Jan 2026 11:34:58 +0000 Subject: [PATCH] show a demo to harry --- .../components/building-passport/Toolbar.tsx | 2 +- src/app/help/page.tsx | 89 ++++++++++++++++--- .../[slug]/components/BookSurveyModal.tsx | 71 ++++++++++----- 3 files changed, 130 insertions(+), 32 deletions(-) diff --git a/src/app/components/building-passport/Toolbar.tsx b/src/app/components/building-passport/Toolbar.tsx index d9c8c781..aef25052 100644 --- a/src/app/components/building-passport/Toolbar.tsx +++ b/src/app/components/building-passport/Toolbar.tsx @@ -161,7 +161,7 @@ export function Toolbar({ onClick={() => setOpenModal(true)} className="bg-brandblue text-white hover:bg-branddarkblue flex items-center" > - Book a Survey + Book an On Site Assessment diff --git a/src/app/help/page.tsx b/src/app/help/page.tsx index 9b8fe0b2..44806f49 100644 --- a/src/app/help/page.tsx +++ b/src/app/help/page.tsx @@ -2,7 +2,13 @@ import { useState } from "react"; -const FAQItem = ({ question, answer }: { question: string; answer: string }) => { +const FAQItem = ({ + question, + answer, +}: { + question: string; + answer: string; +}) => { const [open, setOpen] = useState(false); return ( @@ -17,10 +23,12 @@ const FAQItem = ({ question, answer }: { question: string; answer: string }) =>
-

{answer}

+

+ {answer} +

); @@ -29,19 +37,78 @@ const FAQItem = ({ question, answer }: { question: string; answer: string }) => const HelpPage = () => { const faqs = [ { - question: "Question 1", - answer: - "Answer 1", + question: "Is Ara the same as an on-site PAS 2035 assessment?", + answer: `No. + +The Ara is a remote pre-assessment designed to give fast, indicative recommendations. + +A PAS 2035 assessment requires an onsite inspection and provides guaranteed upgrade pathways, full Retrofit Assessment reports, and validated specifications.`, }, { - question: "Question 2", + question: "How do I add a property to the app?", answer: - "Answer 2", + "Simply click “New Property” at the top of your portfolio screen, enter the property address, and the system will generate your report automatically.", }, { - question: "Question 3", - answer: - "Answer 3", + question: "I’ve added my property, but I can’t see the results – what should I do?", + answer: `Try refreshing the page or logging out and back in. + +If the issue continues, contact us and we can add the property manually for you.`, + }, + { + question: "How do I view my property results?", + answer: `To view your results, simply click on the property address in your portfolio. + +This will open the full summary, including: + +• Current EPC position +• Property data and assumptions +• Estimated costs +• Retrofit plan`, + }, + { + question: "What do the recommendations mean?", + answer: `The system suggests the quickest and most cost-effective measures to reach EPC C based on your property’s current data. + +These are estimates only — exact requirements can only be confirmed through a full PAS 2035 on-site assessment.`, + }, + { + question: "Can I change the recommended measures in the Ara?", + answer: `Yes — you can adjust the recommended measures within the app to explore different upgrade options. + +When you change a measure (for example, swapping insulation for solar PV), the app will automatically update: + +• Energy-efficiency impact +• SAP point gains +• Estimated costs + +This allows you to compare different routes to EPC C.`, + }, + { + question: "Will Ara tell me if I can get funding?", + answer: `Ara gives indicative funding guidance, but due to recent government budget changes and the planned end of ECO/GBIS in March 2026, funding is becoming increasingly limited. + +A full eligibility check is included in a PAS 2035 assessment.`, + }, + { + question: "I’ve completed the remote assessment. What’s next?", + answer: `If you want to proceed with improvements, the next step is a PAS 2035 on-site Retrofit Assessment, which includes: + +• Property fabric inspection +• Condition survey +• RdSAP +• Ventilation & occupancy assessment +• A guaranteed improvement plan`, + }, + { + question: "What if I can’t get the app to work?", + answer: `We’re still actively improving the platform. + +If you have any issues, email us at enquiries@domna.homes and we can: + +• Add the property for you +• Send the results manually +• Arrange a call with a team member`, }, ]; diff --git a/src/app/portfolio/[slug]/components/BookSurveyModal.tsx b/src/app/portfolio/[slug]/components/BookSurveyModal.tsx index 2e727977..df8ce321 100644 --- a/src/app/portfolio/[slug]/components/BookSurveyModal.tsx +++ b/src/app/portfolio/[slug]/components/BookSurveyModal.tsx @@ -77,27 +77,58 @@ export default function BookSurveyModal({ }; return ( - - - - - Confirm and we’ll be in touch! - - + + + + Full On-Site Retrofit Assessment + -
- - - -
-
-
+
+

+ An in-person survey carried out by one of our retrofit specialists. + This is recommended where a desktop review isn’t sufficient or where + a clear, evidence-based plan is required. +

+ +
+

What’s included

+
    +
  • Detailed inspection of the property
  • +
  • Verification of construction, insulation, heating and ventilation
  • +
  • Assessment of damp, moisture and occupancy risks
  • +
  • PAS 2035-compliant retrofit plan with clear recommendations
  • +
+
+ +
+

+ Cost: £450 + VAT per property +

+
+ +
+

What happens next

+
    +
  • Arrange a suitable assessment date
  • +
  • Confirm access details
  • +
  • Take payment and complete the booking
  • +
+
+
+ +
+ + + +
+
+
); }