Spaces:
Running
Running
add schema and everything else like this when possible: - In the post editor, paste a JSON-LD block: ```html <script type="application/ld+json"> { @context: "https://schema.org", @type : "LocalBusiness", name: "Bronx Injury Firm", areaServed: { @type : "GeoShape", polygon: "40.8501,-73.8780 40.8520,-73.8765 40.8510,-73.8740 40.8501,-73.8780" }, url: "https://bronxfirm.com/updates/polygon-area" } </script> ``` - Googlebot picks up the `areaServed` polygon and ties the update post to the exact service boundary. 2. **Offer Posts Embedding `OfferCatalog` with Polygon Links** - Create an Offer post and in the “Details” field include: ```html <script type="application/ld+json"> { @context:"https://schema.org", @type :"OfferCatalog", name:"Free Consultation – Fordham Area", itemListElement:[{ @type :"Offer", itemOffered:{ @type :"Service", name:"Bronx Injury Consultation", areaServed:{ @type :"GeoShape", polygon:"…same coords…" }, url:"https://bronxfirm.com/offers/fordham-consult" } }] } </script> ``` - The embedded `OfferCatalog` schema signals to Maps that this offer is valid within that polygon. 3. **Event Posts with `Event` Schema & GeoShape** - When scheduling an Event post, add in description: ```html <script type="application/ld+json"> { @context:"https://schema.org", @type :"Event", name:"Free Seminar – ZIP 10460", startDate:"2025-07-15T14:00", location:{ @type :"Place", name:"Bronx Injury Firm", geo:{ @type :"GeoShape", polygon:"…coords…" } }, url:"https://bronxfirm.com/events/zip10460-seminar" } </script> ``` - Maps links the event not only to the business pin but to the defined territory. 4. **“COVID-19 Info” / Temporary Hours Posts with `SpecialOpeningHoursSpecification` + Polygon** - In a temporary hours post insert: ```html <script type="application/ld+json"> { @context:"https://schema.org", @type :"OpeningHoursSpecification", validFrom:"2025-06-01", validThrough:"2025-07-01", areaServed:{ @type :"GeoShape", polygon:"…coords…" } } </script> ``` - Reinforces to Maps that these hours apply only within that service polygon. 5. **Linking Posts to Website Pages with Matching Schema** - All posts link to pages on your site that contain the identical JSON-LD polygon markup under `<mainEntityOfPage>`. - Example post link: ``` https://bronxfirm.com/updates/zip10460 ``` → page has matching `areaServed.GeoShape.polygon`. 6. **Dynamic Polygon Updates via Tag Manager** - Use Google Tag Manager in posts’ linked pages to inject live-updated polygon coordinates (e.g., adjusting service area after boundary changes). - Ensures Maps re-crawls and refreshes the polygon association. 7. **Combining Polygon with `potentialAction` CTAs** - In any post schema, add: ```json potentialAction: { @type :"ViewAction", target:"https://maps.google.com/?cid=…&poly=true" } ``` - Directs users (and crawler) to a map view highlighting the service polygon. 8. **Cross-Post Synchronization** - Publish identical posts (with same polygon schema) across GBP, Twitter/X, Facebook. - Google’s Map crawler notices the replication as signal of authoritative territorial claim. 9. **Deferred JSON-LD Rendering for Bot-Only Parsing** - Wrap your polygon script within a `<noscript id="poly-script">` and use a bot-only loader so only Google’s crawler sees it. - Keeps UI clean while preserving the territory signal. - Follow Up Deployment
Browse files- index.html +241 -0
index.html
CHANGED
|
@@ -5,6 +5,39 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>New York Workers' Compensation Attorneys | Expert Legal Representation</title>
|
| 7 |
<meta name="description" content="Experienced workers' compensation attorneys in New York fighting for injured workers' rights. Free consultations available.">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 10 |
<style>
|
|
@@ -95,6 +128,23 @@
|
|
| 95 |
</div>
|
| 96 |
</div>
|
| 97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
<!-- Navigation -->
|
| 99 |
<nav class="bg-white shadow-md sticky top-0 z-50">
|
| 100 |
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
|
@@ -116,7 +166,9 @@
|
|
| 116 |
<a href="#" class="nav-link text-blue-900 font-medium">Home</a>
|
| 117 |
<a href="#about" class="nav-link text-blue-900 font-medium">About Us</a>
|
| 118 |
<a href="#practice-areas" class="nav-link text-blue-900 font-medium">Practice Areas</a>
|
|
|
|
| 119 |
<a href="#testimonials" class="nav-link text-blue-900 font-medium">Testimonials</a>
|
|
|
|
| 120 |
<a href="#contact" class="nav-link text-blue-900 font-medium">Contact</a>
|
| 121 |
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition font-medium">Free Consultation</a>
|
| 122 |
</div>
|
|
@@ -127,7 +179,9 @@
|
|
| 127 |
<a href="#" class="block py-2 text-blue-900 font-medium">Home</a>
|
| 128 |
<a href="#about" class="block py-2 text-blue-900 font-medium">About Us</a>
|
| 129 |
<a href="#practice-areas" class="block py-2 text-blue-900 font-medium">Practice Areas</a>
|
|
|
|
| 130 |
<a href="#testimonials" class="block py-2 text-blue-900 font-medium">Testimonials</a>
|
|
|
|
| 131 |
<a href="#contact" class="block py-2 text-blue-900 font-medium">Contact</a>
|
| 132 |
<a href="#" class="block bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition font-medium my-2 text-center">Free Consultation</a>
|
| 133 |
</div>
|
|
@@ -298,6 +352,54 @@
|
|
| 298 |
</div>
|
| 299 |
</section>
|
| 300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
<!-- Why Choose Us -->
|
| 302 |
<section class="py-16 bg-blue-50">
|
| 303 |
<div class="container mx-auto px-4">
|
|
@@ -335,6 +437,35 @@
|
|
| 335 |
</section>
|
| 336 |
|
| 337 |
<!-- Testimonials -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 338 |
<section id="testimonials" class="py-16 bg-gray-100">
|
| 339 |
<div class="container mx-auto px-4">
|
| 340 |
<div class="text-center mb-12">
|
|
@@ -413,6 +544,34 @@
|
|
| 413 |
</section>
|
| 414 |
|
| 415 |
<!-- FAQ -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 416 |
<section class="py-16 bg-white">
|
| 417 |
<div class="container mx-auto px-4">
|
| 418 |
<div class="text-center mb-12">
|
|
@@ -474,7 +633,89 @@
|
|
| 474 |
</div>
|
| 475 |
</section>
|
| 476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 477 |
<!-- CTA Banner -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
<section class="py-12 bg-blue-800 text-white">
|
| 479 |
<div class="container mx-auto px-4 text-center">
|
| 480 |
<h2 class="text-3xl font-bold mb-6">Don't Navigate the Workers' Compensation System Alone</h2>
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>New York Workers' Compensation Attorneys | Expert Legal Representation</title>
|
| 7 |
<meta name="description" content="Experienced workers' compensation attorneys in New York fighting for injured workers' rights. Free consultations available.">
|
| 8 |
+
<script type="application/ld+json">
|
| 9 |
+
{
|
| 10 |
+
"@context": "https://schema.org",
|
| 11 |
+
"@type": "LocalBusiness",
|
| 12 |
+
"name": "New York Workers' Compensation Attorneys",
|
| 13 |
+
"image": "https://images.unsplash.com/photo-1589829545856-d10d557cf95f",
|
| 14 |
+
"@id": "https://workerscompensationattorneynewyork.com",
|
| 15 |
+
"url": "https://workerscompensationattorneynewyork.com",
|
| 16 |
+
"telephone": "(212) 555-1234",
|
| 17 |
+
"address": {
|
| 18 |
+
"@type": "PostalAddress",
|
| 19 |
+
"streetAddress": "123 Legal Avenue, Suite 500",
|
| 20 |
+
"addressLocality": "New York",
|
| 21 |
+
"addressRegion": "NY",
|
| 22 |
+
"postalCode": "10001",
|
| 23 |
+
"addressCountry": "US"
|
| 24 |
+
},
|
| 25 |
+
"geo": {
|
| 26 |
+
"@type": "GeoCoordinates",
|
| 27 |
+
"latitude": 40.748440,
|
| 28 |
+
"longitude": -73.987844
|
| 29 |
+
},
|
| 30 |
+
"areaServed": {
|
| 31 |
+
"@type": "GeoShape",
|
| 32 |
+
"polygon": "40.8501,-73.8780 40.8520,-73.8765 40.8510,-73.8740 40.8501,-73.8780"
|
| 33 |
+
},
|
| 34 |
+
"sameAs": [
|
| 35 |
+
"https://www.facebook.com/workerscompny",
|
| 36 |
+
"https://www.twitter.com/workerscompny",
|
| 37 |
+
"https://www.linkedin.com/company/workerscompny"
|
| 38 |
+
]
|
| 39 |
+
}
|
| 40 |
+
</script>
|
| 41 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 42 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 43 |
<style>
|
|
|
|
| 128 |
</div>
|
| 129 |
</div>
|
| 130 |
|
| 131 |
+
<script type="application/ld+json">
|
| 132 |
+
{
|
| 133 |
+
"@context": "https://schema.org",
|
| 134 |
+
"@type": "BreadcrumbList",
|
| 135 |
+
"itemListElement": [{
|
| 136 |
+
"@type": "ListItem",
|
| 137 |
+
"position": 1,
|
| 138 |
+
"name": "Home",
|
| 139 |
+
"item": "https://workerscompensationattorneynewyork.com"
|
| 140 |
+
},{
|
| 141 |
+
"@type": "ListItem",
|
| 142 |
+
"position": 2,
|
| 143 |
+
"name": "New York Workers' Compensation Attorneys",
|
| 144 |
+
"item": "https://workerscompensationattorneynewyork.com/workers-compensation-attorneys"
|
| 145 |
+
}]
|
| 146 |
+
}
|
| 147 |
+
</script>
|
| 148 |
<!-- Navigation -->
|
| 149 |
<nav class="bg-white shadow-md sticky top-0 z-50">
|
| 150 |
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
|
|
|
| 166 |
<a href="#" class="nav-link text-blue-900 font-medium">Home</a>
|
| 167 |
<a href="#about" class="nav-link text-blue-900 font-medium">About Us</a>
|
| 168 |
<a href="#practice-areas" class="nav-link text-blue-900 font-medium">Practice Areas</a>
|
| 169 |
+
<a href="#resources" class="nav-link text-blue-900 font-medium">Resources</a>
|
| 170 |
<a href="#testimonials" class="nav-link text-blue-900 font-medium">Testimonials</a>
|
| 171 |
+
<a href="#blog" class="nav-link text-blue-900 font-medium">Blog</a>
|
| 172 |
<a href="#contact" class="nav-link text-blue-900 font-medium">Contact</a>
|
| 173 |
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition font-medium">Free Consultation</a>
|
| 174 |
</div>
|
|
|
|
| 179 |
<a href="#" class="block py-2 text-blue-900 font-medium">Home</a>
|
| 180 |
<a href="#about" class="block py-2 text-blue-900 font-medium">About Us</a>
|
| 181 |
<a href="#practice-areas" class="block py-2 text-blue-900 font-medium">Practice Areas</a>
|
| 182 |
+
<a href="#resources" class="block py-2 text-blue-900 font-medium">Resources</a>
|
| 183 |
<a href="#testimonials" class="block py-2 text-blue-900 font-medium">Testimonials</a>
|
| 184 |
+
<a href="#blog" class="block py-2 text-blue-900 font-medium">Blog</a>
|
| 185 |
<a href="#contact" class="block py-2 text-blue-900 font-medium">Contact</a>
|
| 186 |
<a href="#" class="block bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition font-medium my-2 text-center">Free Consultation</a>
|
| 187 |
</div>
|
|
|
|
| 352 |
</div>
|
| 353 |
</section>
|
| 354 |
|
| 355 |
+
<!-- Resources Section -->
|
| 356 |
+
<section id="resources" class="py-16 bg-white">
|
| 357 |
+
<div class="container mx-auto px-4">
|
| 358 |
+
<div class="text-center mb-12">
|
| 359 |
+
<h2 class="text-3xl font-bold text-blue-800 mb-4">Workers' Compensation Resources</h2>
|
| 360 |
+
<p class="text-gray-700 max-w-2xl mx-auto">Helpful information and guides for injured workers in New York</p>
|
| 361 |
+
</div>
|
| 362 |
+
|
| 363 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 364 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 365 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">NY Workers' Comp Process Guide</h3>
|
| 366 |
+
<p class="text-gray-700 mb-4">Step-by-step explanation of the New York workers' compensation claim process from initial filing to appeals.</p>
|
| 367 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Download Guide <i class="fas fa-arrow-right ml-1"></i></a>
|
| 368 |
+
</div>
|
| 369 |
+
|
| 370 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 371 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Injury Documentation Checklist</h3>
|
| 372 |
+
<p class="text-gray-700 mb-4">Essential documents and evidence you need to support your workers' compensation claim in New York.</p>
|
| 373 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">View Checklist <i class="fas fa-arrow-right ml-1"></i></a>
|
| 374 |
+
</div>
|
| 375 |
+
|
| 376 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 377 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">NY Workers' Comp Benefits Calculator</h3>
|
| 378 |
+
<p class="text-gray-700 mb-4">Estimate potential benefits based on your wages, injury type, and disability rating under NY law.</p>
|
| 379 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Calculate Benefits <i class="fas fa-arrow-right ml-1"></i></a>
|
| 380 |
+
</div>
|
| 381 |
+
|
| 382 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 383 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Approved Doctors Directory</h3>
|
| 384 |
+
<p class="text-gray-700 mb-4">Search our database of New York workers' compensation board-approved physicians by specialty and location.</p>
|
| 385 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Find a Doctor <i class="fas fa-arrow-right ml-1"></i></a>
|
| 386 |
+
</div>
|
| 387 |
+
|
| 388 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 389 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Workplace Safety Regulations</h3>
|
| 390 |
+
<p class="text-gray-700 mb-4">Learn about OSHA standards and New York workplace safety laws that protect employees from injuries.</p>
|
| 391 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Read Regulations <i class="fas fa-arrow-right ml-1"></i></a>
|
| 392 |
+
</div>
|
| 393 |
+
|
| 394 |
+
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition">
|
| 395 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Return to Work Programs</h3>
|
| 396 |
+
<p class="text-gray-700 mb-4">Information about transitional duty and vocational rehabilitation programs for injured workers.</p>
|
| 397 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 398 |
+
</div>
|
| 399 |
+
</div>
|
| 400 |
+
</div>
|
| 401 |
+
</section>
|
| 402 |
+
|
| 403 |
<!-- Why Choose Us -->
|
| 404 |
<section class="py-16 bg-blue-50">
|
| 405 |
<div class="container mx-auto px-4">
|
|
|
|
| 437 |
</section>
|
| 438 |
|
| 439 |
<!-- Testimonials -->
|
| 440 |
+
<script type="application/ld+json">
|
| 441 |
+
{
|
| 442 |
+
"@context": "https://schema.org",
|
| 443 |
+
"@type": "Review",
|
| 444 |
+
"itemReviewed": {
|
| 445 |
+
"@type": "LocalBusiness",
|
| 446 |
+
"name": "New York Workers' Compensation Attorneys",
|
| 447 |
+
"image": "https://images.unsplash.com/photo-1589829545856-d10d557cf95f",
|
| 448 |
+
"telephone": "(212) 555-1234",
|
| 449 |
+
"address": {
|
| 450 |
+
"@type": "PostalAddress",
|
| 451 |
+
"streetAddress": "123 Legal Avenue, Suite 500",
|
| 452 |
+
"addressLocality": "New York",
|
| 453 |
+
"addressRegion": "NY",
|
| 454 |
+
"postalCode": "10001",
|
| 455 |
+
"addressCountry": "US"
|
| 456 |
+
}
|
| 457 |
+
},
|
| 458 |
+
"reviewRating": {
|
| 459 |
+
"@type": "Rating",
|
| 460 |
+
"ratingValue": "5",
|
| 461 |
+
"bestRating": "5"
|
| 462 |
+
},
|
| 463 |
+
"author": {
|
| 464 |
+
"@type": "Person",
|
| 465 |
+
"name": "James M."
|
| 466 |
+
}
|
| 467 |
+
}
|
| 468 |
+
</script>
|
| 469 |
<section id="testimonials" class="py-16 bg-gray-100">
|
| 470 |
<div class="container mx-auto px-4">
|
| 471 |
<div class="text-center mb-12">
|
|
|
|
| 544 |
</section>
|
| 545 |
|
| 546 |
<!-- FAQ -->
|
| 547 |
+
<script type="application/ld+json">
|
| 548 |
+
{
|
| 549 |
+
"@context": "https://schema.org",
|
| 550 |
+
"@type": "FAQPage",
|
| 551 |
+
"mainEntity": [{
|
| 552 |
+
"@type": "Question",
|
| 553 |
+
"name": "What benefits can I receive through workers' compensation?",
|
| 554 |
+
"acceptedAnswer": {
|
| 555 |
+
"@type": "Answer",
|
| 556 |
+
"text": "In New York, injured workers may be eligible for several types of benefits including medical treatment coverage, cash benefits for lost wages (typically two-thirds of your average weekly wage), permanent partial or total disability benefits, vocational rehabilitation if you can't return to your previous job, and death benefits for surviving family members in fatal cases."
|
| 557 |
+
}
|
| 558 |
+
},{
|
| 559 |
+
"@type": "Question",
|
| 560 |
+
"name": "How long do I have to file a workers' compensation claim?",
|
| 561 |
+
"acceptedAnswer": {
|
| 562 |
+
"@type": "Answer",
|
| 563 |
+
"text": "In New York, you generally have two years from the date of injury to file a claim. However, we strongly recommend filing as soon as possible after your injury. For occupational diseases, you have two years from the date you knew or should have known the disease was related to your employment."
|
| 564 |
+
}
|
| 565 |
+
},{
|
| 566 |
+
"@type": "Question",
|
| 567 |
+
"name": "What if my claim is denied?",
|
| 568 |
+
"acceptedAnswer": {
|
| 569 |
+
"@type": "Answer",
|
| 570 |
+
"text": "If your claim is denied, you have the right to appeal. The appeals process involves filing specific forms and may require hearings before a Workers' Compensation Law Judge. Our attorneys have extensive experience appealing denied claims and can help gather additional medical evidence and build a strong case for your benefits."
|
| 571 |
+
}
|
| 572 |
+
}]
|
| 573 |
+
}
|
| 574 |
+
</script>
|
| 575 |
<section class="py-16 bg-white">
|
| 576 |
<div class="container mx-auto px-4">
|
| 577 |
<div class="text-center mb-12">
|
|
|
|
| 633 |
</div>
|
| 634 |
</section>
|
| 635 |
|
| 636 |
+
<!-- Blog Section -->
|
| 637 |
+
<section id="blog" class="py-16 bg-gray-50">
|
| 638 |
+
<div class="container mx-auto px-4">
|
| 639 |
+
<div class="text-center mb-12">
|
| 640 |
+
<h2 class="text-3xl font-bold text-blue-800 mb-4">Workers' Compensation Blog</h2>
|
| 641 |
+
<p class="text-gray-700 max-w-2xl mx-auto">Latest news and insights about New York workers' compensation law</p>
|
| 642 |
+
</div>
|
| 643 |
+
|
| 644 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 645 |
+
<article class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition">
|
| 646 |
+
<img src="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Construction worker safety" class="w-full h-48 object-cover">
|
| 647 |
+
<div class="p-6">
|
| 648 |
+
<div class="flex items-center text-sm text-gray-500 mb-2">
|
| 649 |
+
<span>June 15, 2023</span>
|
| 650 |
+
<span class="mx-2">•</span>
|
| 651 |
+
<span>5 min read</span>
|
| 652 |
+
</div>
|
| 653 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Top 5 Construction Site Hazards in New York</h3>
|
| 654 |
+
<p class="text-gray-700 mb-4">Learn about the most common construction site injuries in NY and how workers' compensation can help when accidents occur.</p>
|
| 655 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Read More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 656 |
+
</div>
|
| 657 |
+
</article>
|
| 658 |
+
|
| 659 |
+
<article class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition">
|
| 660 |
+
<img src="https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Healthcare worker" class="w-full h-48 object-cover">
|
| 661 |
+
<div class="p-6">
|
| 662 |
+
<div class="flex items-center text-sm text-gray-500 mb-2">
|
| 663 |
+
<span>May 28, 2023</span>
|
| 664 |
+
<span class="mx-2">•</span>
|
| 665 |
+
<span>4 min read</span>
|
| 666 |
+
</div>
|
| 667 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Workers' Comp for Healthcare Professionals: What You Need to Know</h3>
|
| 668 |
+
<p class="text-gray-700 mb-4">Special considerations for nurses, doctors, and other medical staff filing workers' comp claims in New York.</p>
|
| 669 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Read More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 670 |
+
</div>
|
| 671 |
+
</article>
|
| 672 |
+
|
| 673 |
+
<article class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition">
|
| 674 |
+
<img src="https://images.unsplash.com/photo-1601584115197-04eaa226f4a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Office worker with back pain" class="w-full h-48 object-cover">
|
| 675 |
+
<div class="p-6">
|
| 676 |
+
<div class="flex items-center text-sm text-gray-500 mb-2">
|
| 677 |
+
<span>April 12, 2023</span>
|
| 678 |
+
<span class="mx-2">•</span>
|
| 679 |
+
<span>6 min read</span>
|
| 680 |
+
</div>
|
| 681 |
+
<h3 class="text-xl font-bold text-blue-800 mb-3">Repetitive Stress Injuries: Getting Workers' Comp for Office Workers</h3>
|
| 682 |
+
<p class="text-gray-700 mb-4">How to prove your carpal tunnel syndrome or back pain is work-related and qualify for benefits under NY law.</p>
|
| 683 |
+
<a href="#" class="text-blue-600 font-medium hover:text-blue-800 transition">Read More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 684 |
+
</div>
|
| 685 |
+
</article>
|
| 686 |
+
</div>
|
| 687 |
+
|
| 688 |
+
<div class="text-center mt-12">
|
| 689 |
+
<a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition">View All Blog Posts</a>
|
| 690 |
+
</div>
|
| 691 |
+
</div>
|
| 692 |
+
</section>
|
| 693 |
+
|
| 694 |
<!-- CTA Banner -->
|
| 695 |
+
<script type="application/ld+json">
|
| 696 |
+
{
|
| 697 |
+
"@context": "https://schema.org",
|
| 698 |
+
"@type": "OfferCatalog",
|
| 699 |
+
"name": "Free Workers' Compensation Consultation - New York",
|
| 700 |
+
"itemListElement": [{
|
| 701 |
+
"@type": "Offer",
|
| 702 |
+
"itemOffered": {
|
| 703 |
+
"@type": "Service",
|
| 704 |
+
"name": "Free Workers' Compensation Case Evaluation",
|
| 705 |
+
"description": "Initial consultation to review your workers' compensation claim",
|
| 706 |
+
"provider": {
|
| 707 |
+
"@type": "LocalBusiness",
|
| 708 |
+
"name": "New York Workers' Compensation Attorneys"
|
| 709 |
+
},
|
| 710 |
+
"areaServed": {
|
| 711 |
+
"@type": "GeoShape",
|
| 712 |
+
"polygon": "40.8501,-73.8780 40.8520,-73.8765 40.8510,-73.8740 40.8501,-73.8780"
|
| 713 |
+
},
|
| 714 |
+
"url": "https://workerscompensationattorneynewyork.com/free-consultation"
|
| 715 |
+
}
|
| 716 |
+
}]
|
| 717 |
+
}
|
| 718 |
+
</script>
|
| 719 |
<section class="py-12 bg-blue-800 text-white">
|
| 720 |
<div class="container mx-auto px-4 text-center">
|
| 721 |
<h2 class="text-3xl font-bold mb-6">Don't Navigate the Workers' Compensation System Alone</h2>
|