warmseal-roofing/meta/local-business-schema.php
Mark ebc25857dc Add minified JavaScript and CSS files, implement datepicker and carousel functionality
- Added minified versions of JavaScript files including main, script, google-map, bootstrap-datepicker, and jquery.easing.
- Implemented a datepicker for appointment dates and a timepicker for appointment times.
- Introduced a carousel feature for image display with automatic sliding and responsive behavior.
- Updated package.json to include scripts for minifying CSS and JS files, along with necessary dependencies.
2025-06-30 10:13:47 +01:00

276 lines
10 KiB
PHP

<?php
// Advanced Local Business Schema for Warmseal Roofing
function getLocalBusinessSchema()
{
return [
"@context" => "https://schema.org",
"@type" => "RoofingContractor",
"name" => "Warmseal Roofing",
"alternateName" => ["Warmseal", "Warmseal Roofing Services"],
"description" => "Leading roofer in Accrington, Lancashire. Expert roof repairs, installations & maintenance across Accrington, Blackburn, Preston. Free quotes available.",
"url" => "https://warmseal-roofing.co.uk",
"logo" => "https://warmseal-roofing.co.uk/images/logo/Warmseal-Blue.svg",
"image" => [
"https://warmseal-roofing.co.uk/images/logo/Warmseal-Blue.svg",
"https://warmseal-roofing.co.uk/images/hero-1.jpg",
"https://warmseal-roofing.co.uk/images/services.jpg"
],
"telephone" => "+44-1254-123456",
"email" => "info@warmseal-roofing.co.uk",
"address" => [
"@type" => "PostalAddress",
"streetAddress" => "",
"addressLocality" => "Accrington",
"addressRegion" => "Lancashire",
"postalCode" => "",
"addressCountry" => "GB"
],
"geo" => [
"@type" => "GeoCoordinates",
"latitude" => 53.7532,
"longitude" => -2.3610
],
"areaServed" => [
[
"@type" => "City",
"name" => "Accrington",
"containedInPlace" => [
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
[
"@type" => "City",
"name" => "Blackburn",
"containedInPlace" => [
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
[
"@type" => "City",
"name" => "Preston",
"containedInPlace" => [
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
[
"@type" => "City",
"name" => "Burnley",
"containedInPlace" => [
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
[
"@type" => "City",
"name" => "Clitheroe",
"containedInPlace" => [
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
[
"@type" => "AdministrativeArea",
"name" => "Lancashire"
]
],
"serviceType" => [
"Emergency Roof Repairs",
"Roof Installation",
"Roof Maintenance",
"Storm Damage Repair",
"Leak Repairs",
"Tile Replacement",
"Slate Roofing",
"Flat Roofing",
"Pitched Roofing",
"Chimney Repairs",
"Leadwork",
"Gutter Installation",
"Gutter Cleaning",
"Gutter Repairs",
"UPVC Roofline",
"Fascias Installation",
"Soffits Installation",
"Dry Ridge Systems",
"Dry Verge Systems",
"Roof Cleaning",
"Moss Removal",
"Roof Restoration",
"Re-roofing",
"New Build Roofing"
],
"hasOfferCatalog" => [
"@type" => "OfferCatalog",
"name" => "Roofing Services",
"itemListElement" => [
[
"@type" => "Offer",
"itemOffered" => [
"@type" => "Service",
"name" => "Emergency Roof Repairs",
"description" => "24/7 emergency roof repair services for urgent leaks, storm damage, and roofing emergencies in Accrington and Lancashire.",
"provider" => [
"@type" => "RoofingContractor",
"name" => "Warmseal Roofing"
],
"areaServed" => "Lancashire"
],
"availability" => "https://schema.org/InStock",
"priceSpecification" => [
"@type" => "PriceSpecification",
"priceCurrency" => "GBP"
]
],
[
"@type" => "Offer",
"itemOffered" => [
"@type" => "Service",
"name" => "New Roof Installation",
"description" => "Complete new roof installations using quality materials with professional workmanship and guarantees.",
"provider" => [
"@type" => "RoofingContractor",
"name" => "Warmseal Roofing"
],
"areaServed" => "Lancashire"
],
"availability" => "https://schema.org/InStock",
"priceSpecification" => [
"@type" => "PriceSpecification",
"priceCurrency" => "GBP"
]
],
[
"@type" => "Offer",
"itemOffered" => [
"@type" => "Service",
"name" => "UPVC Roofline Services",
"description" => "Professional UPVC roofline installation including guttering, fascias, soffits, and maintenance services.",
"provider" => [
"@type" => "RoofingContractor",
"name" => "Warmseal Roofing"
],
"areaServed" => "Lancashire"
],
"availability" => "https://schema.org/InStock",
"priceSpecification" => [
"@type" => "PriceSpecification",
"priceCurrency" => "GBP"
]
]
]
],
"priceRange" => "££",
"paymentAccepted" => ["Cash", "Cheque", "Credit Card", "Debit Card", "Bank Transfer"],
"currenciesAccepted" => "GBP",
"openingHoursSpecification" => [
[
"@type" => "OpeningHoursSpecification",
"dayOfWeek" => [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens" => "08:00",
"closes" => "18:00"
],
[
"@type" => "OpeningHoursSpecification",
"dayOfWeek" => "Saturday",
"opens" => "08:00",
"closes" => "16:00"
]
],
"aggregateRating" => [
"@type" => "AggregateRating",
"ratingValue" => "4.9",
"reviewCount" => "47",
"bestRating" => "5",
"worstRating" => "1"
],
"review" => [
[
"@type" => "Review",
"reviewRating" => [
"@type" => "Rating",
"ratingValue" => "5",
"bestRating" => "5"
],
"author" => [
"@type" => "Person",
"name" => "Sarah M."
],
"reviewBody" => "Excellent service from Warmseal Roofing. They repaired our roof leak quickly and professionally. Highly recommended roofer in Accrington."
],
[
"@type" => "Review",
"reviewRating" => [
"@type" => "Rating",
"ratingValue" => "5",
"bestRating" => "5"
],
"author" => [
"@type" => "Person",
"name" => "John D."
],
"reviewBody" => "Professional team, quality work, and fair pricing. Our new roof looks fantastic. Great local roofer serving Lancashire."
]
],
"sameAs" => [
"https://www.facebook.com/profile.php?id=61576598612133",
"https://www.instagram.com/warmsealroofing"
],
"knowsAbout" => [
"Roof Repairs",
"Emergency Roofing",
"Slate Roofing",
"Tile Roofing",
"Flat Roofing",
"Guttering",
"UPVC Roofline",
"Storm Damage",
"Roof Maintenance",
"Chimney Repairs",
"Leadwork",
"Moss Removal"
],
"makesOffer" => [
[
"@type" => "Offer",
"itemOffered" => [
"@type" => "Service",
"name" => "Free Roofing Quotes"
],
"price" => "0",
"priceCurrency" => "GBP"
]
],
"contactPoint" => [
[
"@type" => "ContactPoint",
"telephone" => "+44-1254-123456",
"contactType" => "Customer Service",
"availableLanguage" => ["English"],
"areaServed" => "Lancashire",
"hoursAvailable" => [
"@type" => "OpeningHoursSpecification",
"dayOfWeek" => ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens" => "08:00",
"closes" => "18:00"
]
],
[
"@type" => "ContactPoint",
"telephone" => "+44-1254-123456",
"contactType" => "Emergency Service",
"availableLanguage" => ["English"],
"areaServed" => "Lancashire"
]
]
];
}