/* eslint-disable */
// Real Estate Law service page

const realEstateData = {
  id: "real-estate",
  title: "Real Estate Law",
  heroTitle: "Real <em>Estate Law.</em>",
  heroLede: "Residential and commercial closings, purchase and sale contracts, leases, landlord/tenant matters, and rigorous title diligence.",
  sideTitle: "Counsel for the largest financial decisions you'll make.",
  mainTitle: "Quiet rigor on <em>every transaction.</em>",
  intro: [
    "Real estate is rarely about the document. It is about the seam between the document and the reality on the ground: an unrecorded easement, a missing release, an oblique survey notation, a tenant whose lease was never properly assigned. The work of a real estate attorney is to find those seams before they become problems.",
    "We represent buyers, sellers, landlords, tenants, lenders, and developers through residential and commercial transactions in Pennsylvania and New Jersey. Whether the matter is a first-home closing or a multi-million-dollar commercial acquisition, the standard of care is the same.",
  ],
  services: [
    { icon: <Icon.Key />, title: "Residential Closings", desc: "Representation of buyers and sellers through every step of residential real estate transactions, from contract to keys." },
    { icon: <Icon.Business />, title: "Commercial Acquisitions", desc: "Commercial purchase and sale transactions: due diligence, contract negotiation, financing review, and closing." },
    { icon: <Icon.Document />, title: "Contract Drafting & Review", desc: "Purchase and sale contracts, options, rights of first refusal, and amendments — drafted or reviewed with care." },
    { icon: <Icon.Shield />, title: "Title Review & Curative", desc: "Detailed examination of title commitments, curative actions to clear defects, and protection of your interest at closing." },
    { icon: <Icon.Handshake />, title: "Lease Drafting & Negotiation", desc: "Residential and commercial leases drafted, reviewed, and negotiated on behalf of landlords or tenants." },
    { icon: <Icon.Estate />, title: "Landlord / Tenant Matters", desc: "Counsel on landlord/tenant disputes, lease enforcement, evictions, and the navigation of statutory requirements." },
  ],
  process: [
    { n: "i.", title: "Pre-contract review.", desc: "We are most effective when engaged early — before a contract is signed. The terms negotiated here govern everything that follows." },
    { n: "ii.", title: "Diligence.", desc: "Title work, survey review, contingency oversight, and a careful read of every document the other side produces." },
    { n: "iii.", title: "Negotiation.", desc: "Direct engagement with opposing counsel to resolve open issues, cure title defects, and protect your position at closing." },
    { n: "iv.", title: "Closing.", desc: "Coordinated, on-time, and intelligible. You will know what every document is, what it does, and why you are signing it." },
    { n: "v.", title: "Post-closing.", desc: "Confirmation that all recordings, releases, and funds have moved as agreed — and a clear file you can rely on years from now." },
  ],
  note: "A good closing is one where the deal that closes is the deal that was negotiated. It sounds obvious. It is not."
};

ReactDOM.createRoot(document.getElementById("root")).render(<ServicePage data={realEstateData} />);
