added contact us

This commit is contained in:
Jun-te Kim 2026-01-26 11:50:36 +00:00
parent 408433190c
commit 8a795a488a

View file

@ -122,6 +122,18 @@ If you have any issues, email us at enquiries@domna.homes and we can:
{faqs.map((f, i) => (
<FAQItem key={i} question={f.question} answer={f.answer} />
))}
<div className="mt-12 border-t border-zinc-300 pt-8 text-center">
<h2 className="text-xl font-semibold mb-2">Still need help?</h2>
<p className="text-zinc-600 mb-4">
If you cant find the answer youre looking for, our team is happy to help.
</p>
<a
href="mailto:enquiries@domna.homes"
className="text-blue-600 font-medium hover:underline"
>
Contact us at enquiries@domna.homes
</a>
</div>
</div>
);
};