export default function WhoWeServe() { const targets = [ { p: "p1", label: "■ PRIORITY 1", name: "FENCE CONTRACTORS", examples: "Residential · Commercial · Chain link specialists · Ornamental installers" }, { p: "p1", label: "■ PRIORITY 1", name: "GENERAL CONTRACTORS", examples: "Landscaping · Deck builders · Pool contractors · Renovation" }, { p: "p1", label: "■ PRIORITY 1", name: "BUILDERS & DEVELOPERS", examples: "Home builders · Commercial builders · Site developers · Real estate developers" }, { p: "p2", label: "■ PRIORITY 2", name: "PROPERTY MANAGERS", examples: "Apartments · Commercial properties · Industrial facilities · Storage" }, { p: "p2", label: "■ PRIORITY 2", name: "STAINING CONTRACTORS", examples: "Deck staining · Fence staining · Painters · Handyman · Pressure washing" }, { p: "p2", label: "■ PRIORITY 2", name: "EVENT & RENTAL COMPANIES", examples: "Event management · Temp fence rental · Crowd control · Festival organizers" }, { p: "p3", label: "□ SPECIALTY", name: "GOVERNMENT & INSTITUTIONS", examples: "Municipalities · Schools · Parks & rec · Public infrastructure" }, { p: "p3", label: "□ SPECIALTY", name: "AGRICULTURE & RURAL", examples: "Farms · Ranches · Livestock owners · Agricultural businesses" }, ]; return (
Who we serve

BUILT FOR THE
PEOPLE WHO BUILD.

{targets.map((target, index) => (
{target.label}
{target.name}
{target.examples}
))}
); }