/* eslint-disable */
// Business Law service page

const businessData = {
  id: "business",
  title: "Business Law",
  heroTitle: "Business <em>Law.</em>",
  heroLede: "LLC and corporation formation, operating and shareholder agreements, contract drafting, and general counsel for entrepreneurs and family enterprises.",
  sideTitle: "Counsel that scales with the venture.",
  mainTitle: "Practical, strategic, <em>quietly excellent.</em>",
  intro: [
    "Every business has a legal layer, whether it has been thoughtfully drafted or whether it has been left to default rules. The difference between the two becomes acute exactly when it matters: a co-founder disagreement, a financing event, a customer dispute, a sale.",
    "We work with founders, small businesses, and family enterprises across Pennsylvania and New Jersey. The role we play depends on what the company needs — sometimes formation counsel, sometimes a single contract, sometimes a long-running outside general counsel relationship. The standard is constant.",
  ],
  services: [
    { icon: <Icon.Business />, title: "Entity Formation", desc: "LLC, S-corporation, and C-corporation formation. Selection of entity type calibrated to your tax posture and growth plans." },
    { icon: <Icon.Document />, title: "Operating & Shareholder Agreements", desc: "The most important document a company drafts. Bespoke governance terms designed to anticipate, not merely react." },
    { icon: <Icon.Handshake />, title: "Commercial Contracts", desc: "Vendor agreements, service contracts, NDAs, employment and consulting agreements — drafted or reviewed with care." },
    { icon: <Icon.Shield />, title: "Outside General Counsel", desc: "Ongoing legal partnership for small companies that need senior counsel without the cost of an in-house team." },
    { icon: <Icon.Key />, title: "Founder & Partner Disputes", desc: "Negotiation, mediation, and resolution of disagreements between owners, before they become litigation." },
    { icon: <Icon.Estate />, title: "Buy-Sell & Succession", desc: "Planning for owner exits, transitions, and the transfer of family-held companies to the next generation." },
  ],
  process: [
    { n: "i.", title: "Understand the business.", desc: "A founder's call. What you sell, who you sell to, who is on the cap table, what keeps you up at night. We listen before we propose." },
    { n: "ii.", title: "Map the legal layer.", desc: "A short, candid memo of what your company already has, what it is missing, and what we would do in what order — with cost." },
    { n: "iii.", title: "Draft and execute.", desc: "Tight, plain-English documents that hold up under scrutiny. We will explain every clause, not bury it." },
    { n: "iv.", title: "Be on call.", desc: "For ongoing engagements, you have a number to call and an attorney who knows your company. No ticket queue, no triage." },
  ],
  note: "The cheapest legal work is the work that is done right the first time. Everything else compounds."
};

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