diff --git a/src/App.tsx b/src/App.tsx index 3db9806..dbb05d9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -23,6 +23,8 @@ import About from './pages/About'; import Contact from './pages/Contact'; import Emergency from './pages/Emergency'; import CamdenBoroughPage from './pages/CamdenBoroughPage'; +import IslingtonBoroughPage from './pages/IslingtonBoroughPage'; +import HackneyBoroughPage from './pages/HackneyBoroughPage'; function App() { return ( @@ -50,6 +52,8 @@ function App() { {/* Service Areas */} } /> } /> + } /> + } /> } /> {/* Company */} diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 95cc1f2..7c24779 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -64,11 +64,11 @@ const Footer: React.FC = () => {

Quick Links

    -
  • → About Us
  • -
  • → Our Services
  • -
  • → Pest Library
  • -
  • → Service Areas
  • -
  • → Emergency Service
  • +
  • About Us
  • +
  • Our Services
  • +
  • Pest Library
  • +
  • Service Areas
  • +
  • Emergency Service
@@ -76,11 +76,11 @@ const Footer: React.FC = () => {

Our Services

    -
  • → Residential Pest Control
  • -
  • → Commercial Solutions
  • -
  • → Restaurant & Food Safety
  • -
  • → Emergency Services
  • -
  • → Prevention Programs
  • +
  • Residential Pest Control
  • +
  • Commercial Solutions
  • +
  • Restaurant & Food Safety
  • +
  • Emergency Services
  • +
  • Prevention Programs
diff --git a/src/components/ServiceAreaLinks.tsx b/src/components/ServiceAreaLinks.tsx new file mode 100644 index 0000000..d76f15f --- /dev/null +++ b/src/components/ServiceAreaLinks.tsx @@ -0,0 +1,26 @@ +import React from 'react'; + +const serviceAreas = [ + { slug: 'camden', name: 'Camden' }, + { slug: 'islington', name: 'Islington' }, + { slug: 'hackney', name: 'Hackney' }, +]; + +const ServiceAreaLinks: React.FC = () => ( +
+
+

Other London Areas We Serve

+ +
+
+); + +export default ServiceAreaLinks; diff --git a/src/pages/CamdenBoroughPage.tsx b/src/pages/CamdenBoroughPage.tsx index b63bf58..4fc0e3a 100644 --- a/src/pages/CamdenBoroughPage.tsx +++ b/src/pages/CamdenBoroughPage.tsx @@ -1,9 +1,9 @@ import React, { useState, useEffect } from 'react'; -import '../styles/CamdenBoroughPage.scss'; +import '../styles/ServiceAreaPage.scss'; +import ServiceAreaLinks from '../components/ServiceAreaLinks'; const CamdenBoroughPage: React.FC = () => { const [mobileNavOpen, setMobileNavOpen] = useState(false); - const [stickyNavPosition, setStickyNavPosition] = useState<'fixed' | 'absolute'>('fixed'); const scrollToSection = (sectionId: string) => { const element = document.getElementById(sectionId); @@ -21,39 +21,6 @@ const CamdenBoroughPage: React.FC = () => { } }; - // Handle sticky navigation positioning to stop at footer - useEffect(() => { - const handleScroll = () => { - const footer = document.querySelector('footer'); - const stickyNav = document.querySelector('.sticky-nav'); - - if (footer && stickyNav) { - const footerRect = footer.getBoundingClientRect(); - const stickyNavRect = stickyNav.getBoundingClientRect(); - const stickyNavHeight = stickyNavRect.height; - const buffer = 20; // Small buffer space above footer - - // Check if sticky nav would overlap with footer - if (footerRect.top <= window.innerHeight - stickyNavHeight - buffer) { - setStickyNavPosition('absolute'); - } else { - setStickyNavPosition('fixed'); - } - } - }; - - window.addEventListener('scroll', handleScroll); - window.addEventListener('resize', handleScroll); - - // Initial check - handleScroll(); - - return () => { - window.removeEventListener('scroll', handleScroll); - window.removeEventListener('resize', handleScroll); - }; - }, []); - // Update document title, meta description, and schema markup for SEO React.useEffect(() => { document.title = 'Camden Pest Control Services | Trusted Exterminators in Camden, London'; @@ -173,31 +140,7 @@ const CamdenBoroughPage: React.FC = () => { }, []); return ( -
- {/* Sticky Navigation */} - - +
+
+ + +
{/* Introduction Section */}
@@ -280,7 +242,7 @@ const CamdenBoroughPage: React.FC = () => {

- Dealing with pests in Camden can be challenging, whether you're a homeowner near Camden Market or managing a commercial property in the bustling area. At Pest Pro, we understand the unique pest challenges inherent to the vibrant and diverse Camden area and provide tailored, effective solutions to protect your property and peace of mind. + Dealing with pests in Camden can be challenging, whether you're a homeowner near Camden Market or managing a commercial property in the bustling area. At Pest Pro, we understand the unique pest challenges inherent to the vibrant and diverse Camden area and provide tailored, effective solutions to protect your property and peace of mind. We also assist neighbouring boroughs like Islington and Hackney.

@@ -655,6 +617,10 @@ const CamdenBoroughPage: React.FC = () => {

+ + +
+
); diff --git a/src/pages/HackneyBoroughPage.tsx b/src/pages/HackneyBoroughPage.tsx new file mode 100644 index 0000000..426fe96 --- /dev/null +++ b/src/pages/HackneyBoroughPage.tsx @@ -0,0 +1,634 @@ +import React, { useState, useEffect } from 'react'; +import '../styles/ServiceAreaPage.scss'; +import ServiceAreaLinks from '../components/ServiceAreaLinks'; + +const HackneyBoroughPage: React.FC = () => { + const [mobileNavOpen, setMobileNavOpen] = useState(false); + + const scrollToSection = (sectionId: string) => { + const element = document.getElementById(sectionId); + if (element) { + const headerHeight = 80; // Header height + const additionalOffset = 20; // Extra padding for better viewing + const elementPosition = element.getBoundingClientRect().top; + const offsetPosition = elementPosition + window.pageYOffset - headerHeight - additionalOffset; + + window.scrollTo({ + top: offsetPosition, + behavior: 'smooth' + }); + setMobileNavOpen(false); + } + }; + + // Update document title, meta description, and schema markup for SEO + React.useEffect(() => { + document.title = 'Hackney Pest Control Services | Trusted Exterminators in Hackney, London'; + + // Update meta description + const metaDescription = document.querySelector('meta[name="description"]'); + if (metaDescription) { + metaDescription.setAttribute('content', 'Humane pest control in Hackney for flats and shops. Friendly technicians use safe traps, targeted gels and proofing to tackle mice, rats and insects. Call for a local quote!'); + } else { + const meta = document.createElement('meta'); + meta.name = 'description'; + meta.content = 'Humane pest control in Hackney for flats and shops. Friendly technicians use safe traps, targeted gels and proofing to tackle mice, rats and insects. Call for a local quote!'; + document.head.appendChild(meta); + } + + // Add Schema.org structured data + const existingSchema = document.querySelector('script[type="application/ld+json"]'); + if (existingSchema) { + existingSchema.remove(); + } + + const schemaData = { + "@context": "https://schema.org", + "@type": "LocalBusiness", + "additionalType": "PestControlService", + "name": "Pest Pro London - Hackney", + "description": "Humane pest control for Hackney homes and indie businesses. Local team uses traps, safe baits and proofing to deter rats, mice and insects. Next-day help available.", + "telephone": "+447727049304", + "email": "info@pestpro.london", + "url": "https://www.pestpro.london/service-areas/hackney", + "areaServed": { + "@type": "Place", + "name": "Hackney, London", + "address": { + "@type": "PostalAddress", + "addressLocality": "Hackney", + "addressRegion": "London", + "postalCode": "N1", + "addressCountry": "GB" + } + }, + "serviceArea": { + "@type": "GeoCircle", + "geoMidpoint": { + "@type": "GeoCoordinates", + "latitude": 51.5380, + "longitude": -0.0990 + }, + "geoRadius": "5000" + }, + "hasOfferCatalog": { + "@type": "OfferCatalog", + "name": "Pest Control Services", + "itemListElement": [ + { + "@type": "Offer", + "itemOffered": { + "@type": "Service", + "name": "Residential Pest Control", + "description": "Comprehensive pest control for homes including rats, mice, bed bugs, wasps, and more" + } + }, + { + "@type": "Offer", + "itemOffered": { + "@type": "Service", + "name": "Commercial Pest Control", + "description": "Professional pest management for businesses, restaurants, and commercial properties" + } + } + ] + }, + "openingHours": "Mo-Su 00:00-23:59", + "priceRange": "££", + "review": [ + { + "@type": "Review", + "reviewRating": { + "@type": "Rating", + "ratingValue": "5", + "bestRating": "5" + }, + "author": { + "@type": "Person", + "name": "S. Thompson" + }, + "reviewBody": "Excellent service from start to finish. They came out within 2 hours of my call and completely sorted our rat problem near Mare Street in Hackney Central.", + "datePublished": "2024-07-15" + }, + { + "@type": "Review", + "reviewRating": { + "@type": "Rating", + "ratingValue": "5", + "bestRating": "5" + }, + "author": { + "@type": "Person", + "name": "M. Patel" + }, + "reviewBody": "Our restaurant on Kingsland Road has been pest-free since partnering with Pest Pro. Their preventative service keeps us compliant and pest-free.", + "datePublished": "2024-06-20" + } + ], + "aggregateRating": { + "@type": "AggregateRating", + "ratingValue": "5.0", + "reviewCount": "94", + "bestRating": "5" + } + }; + + const script = document.createElement('script'); + script.type = 'application/ld+json'; + script.textContent = JSON.stringify(schemaData); + document.head.appendChild(script); + }, []); + + return ( +
+ {/* Mobile Navigation Toggle */} + + + {/* Mobile Navigation Overlay */} +
setMobileNavOpen(false)} + /> + + {/* Mobile Navigation */} + + + {/* Main Content */} +
+ {/* Hero Section */} +
+
+
+

Your Local Pest Control Experts in Hackney, London

+

+ Rapid, effective, and guaranteed pest solutions for homes and businesses across Hackney and surrounding areas. +

+ + + +
+
Available 7 days a week
+
Call back within 1 hour
+
Guaranteed results
+
+
+
+
+ +
+ + +
+ {/* Introduction Section */} +
+
+
+

Professional Pest Control Services in Hackney

+

Local expertise for Hackney's unique pest challenges with guaranteed results

+
+ +
+
+

+ Dealing with pests in Hackney can be challenging, whether you're a flat owner by Broadway Market or running a studio in Dalston. At Pest Pro, we understand the borough's mix of historic terraces and new developments and provide tailored, effective solutions to protect your property and peace of mind. We also support neighbouring areas such as Camden and Islington. +

+ +

+ Our fully qualified, BPCA certified technicians are local experts who live and work in London, ensuring a prompt, reliable, and trustworthy local service specifically designed for Hackney residents and businesses. We pride ourselves on quick response times, often attending within 2 hours for urgent issues, and always within 24 hours – if not, we offer a 10% discount! We favour humane, preventative treatments first—like sealing entry points, setting live-capture traps and using gel baits sparingly—so small properties stay safe and compliant. +

+
+ +
+

Hackney Service Guarantee

+
    + {[ + 'Response within 24 hours guaranteed', + <>BPCA certified technicians only, + <>SafeContractor approved company, + '30-day guarantee after last sighting', + 'Biodegradable pest control methods', + 'Serving both domestic and commercial clients' + ].map((item, index) => ( +
  • + + {item} +
  • + ))} +
+
+
+
+
+ + {/* Common Pests Section */} +
+
+
+

Common Pest Problems in Hackney & How We Solve Them

+

Hackney's unique environment presents specific pest challenges. Our local expertise ensures targeted, effective solutions for every situation.

+
+ +
+ {[ + { + name: 'Mice & Rats', + icon: '🐀', + description: 'Effective rodent control in Hackney, including comprehensive solutions for rat problems originating from sewers, and drain camera surveys to identify and seal entry points.', + solution: 'Advanced baiting systems, entry point sealing, and ongoing monitoring' + }, + { + name: 'Bed Bugs & Fleas', + icon: '🛏️', + description: 'Discreet and thorough bed bug and flea treatments using advanced methods, including steam/heat treatments and specialist tools.', + solution: 'Heat treatment, chemical solutions, and comprehensive follow-up inspections' + }, + { + name: 'Cockroaches', + icon: '🪳', + description: 'Targeted cockroach extermination for rapid results in residential and commercial settings across Hackney.', + solution: 'Gel baiting, spray treatments, and source elimination strategies' + }, + { + name: 'Wasps & Hornets', + icon: '🐝', + description: 'Safe and efficient wasp nest removal and hornet control to reclaim your outdoor spaces.', + solution: 'Professional nest removal, protective treatments, and prevention advice' + }, + { + name: 'Pigeons & Birds', + icon: '🐦', + description: 'Humane bird proofing solutions, including solar panel bird proofing, to protect properties in Hackney.', + solution: 'Netting, spikes, deterrent systems, and solar panel protection' + }, + { + name: 'Other Common Pests', + icon: '🐜', + description: 'Comprehensive solutions for ants, squirrels, moths, spiders, cluster flies, and more, ensuring your environment is safe and hygienic.', + solution: 'Tailored treatments based on pest type and infestation severity' + } + ].map((pest, index) => ( +
+ {pest.icon} +

{pest.name}

+

{pest.description}

+
+

Our Solution:

+

{pest.solution}

+
+
+ ))} +
+ + +
+
+ + {/* Services Section */} +
+
+
+

Tailored Pest Control for Hackney Homes & Businesses

+

Whether you're protecting your family home or ensuring your business stays pest-free, we provide comprehensive solutions tailored to Hackney's unique needs.

+
+ +
+ {/* Residential Services */} +
+
🏠
+

Residential Services

+
    + {[ + 'Humane rodent removal using snap and live traps', + 'Insect treatments with targeted gels and dusts', + 'Proofing and sealing of entry points', + 'Advice on sanitation and long-term prevention', + 'Emergency call-outs for urgent infestations' + ].map((service, index) => ( +
  • + + {service} +
  • + ))} +
+
+ + {/* Commercial Services */} +
+
🏢
+

Commercial Services

+
    + {[ + 'Routine inspections and monitoring stations', + 'Discreet treatments outside trading hours', + 'Safe use of gels, powders and low-toxicity baits', + 'Proofing to keep pests out of stock rooms and kitchens', + 'Documentation to satisfy council and audit requirements' + ].map((service, index) => ( +
  • + + {service} +
  • + ))} +
+
+
+ + {/* Specialized Treatments */} +
+

+ Specialized Treatments for Hackney Clients +

+ +
+ {[ + 'Disinfectant treatments after infestations', + 'Drain camera surveys to identify hidden entry points', + 'Loft insulation removal & replacement after rodent damage', + 'Integrated pest management (IPM) strategies', + 'Solar panel and roof space bird proofing' + ].map((treatment, index) => ( +
+

+ {treatment} +

+
+ ))} +
+
+
+
+ + {/* Why Choose Us Section */} +
+
+
+

Why Hackney Chooses Pest Pro for Pest Control

+

We're more than just exterminators – we're your local pest control partners, committed to protecting Hackney homes and businesses with unmatched expertise and service.

+
+ +
+ {[ + { + icon: '🎯', + title: 'Local Experts for Hackney', + description: 'Our technicians are experts in London pests, living and working in the areas we serve, ensuring a deep understanding of local pest behaviours and effective solutions.' + }, + { + icon: '⚡', + title: 'Rapid & Reliable Response', + description: 'We aim to provide a rapid response, often attending within 2 hours, and guaranteeing attendance within 24 hours. Get a call back within 1 hour!' + }, + { + icon: '🛡️', + title: 'Guaranteed Results', + description: 'We are committed to resolving your pest problems with trust, professionalism and fast response. 30-day guarantee after last sighting for your peace of mind.' + }, + { + icon: '🎓', + title: 'Highly Qualified & Certified', + description: 'All our technicians are BPCA certified, and we maintain SafeContractor approval, ensuring the highest standards of health & safety.' + }, + { + icon: '🌱', + title: 'Safe & Environmentally Conscious', + description: 'We prioritise humane techniques, using live traps, targeted gels and entry-point proofing before considering low-toxicity baits.' + }, + { + icon: '📅', + title: 'Available 7 Days a Week', + description: 'Our technicians work 7 days a week to ensure we are there when you need us most, including emergency weekend service.' + }, + { + icon: '💯', + title: 'Transparent & Fair Pricing', + description: 'We are by far the best value and provide transparent, honest service from initial inquiry to completion with no hidden costs.' + }, + { + icon: '🏆', + title: 'Proven Track Record', + description: 'With hundreds of successful treatments in Hackney and across London, our reputation speaks for itself through satisfied customers.' + } + ].map((benefit, index) => ( +
+
{benefit.icon}
+

{benefit.title}

+

{benefit.description}

+
+ ))} +
+
+
+ + {/* Testimonials Section */} +
+
+
+

What Our Hackney Customers Say

+
+ +
+ {[ + { + quote: ( + <> + Excellent service from start to finish. They came out within 2 hours of my call and completely sorted our rat problem near Mare Street in Hackney Central. The technician was professional, knowledgeable about local pest issues, and the follow-up service was outstanding. + + ), + author: 'S. Thompson', + location: Hackney Central, + date: 'July 2024' + }, + { + quote: ( + <> + Our deli by Kingsland Road has been pest-free since we started using Pest Pro. Their preventative service keeps us compliant and pest-free, which is crucial for our business. Highly recommend their commercial services. + + ), + author: 'M. Patel', + location: Kingsland Road, + date: 'June 2024' + } + ].map((testimonial, index) => ( +
+
"
+

{testimonial.quote}

+
+

{testimonial.author}

+

{testimonial.location}, {testimonial.date}

+
+
+ ))} +
+ + +
+
+ + {/* Final CTA Section */} +
+
+
+

Ready to Get Rid of Pests in Hackney?

+ +

+ Don't let pests disrupt your home or business in Hackney. Contact our friendly, knowledgeable team today for a free, personalized quote. We're here to provide the effective, safe, and reliable pest control solutions you need. +

+ + + +
+
+

Phone:

+

077 2704 9304

+
+ +
+

Email:

+

info@pestpro.london

+
+
+
+
+
+ + {/* Service Area Confirmation */} +
+
+
+

Comprehensive Hackney Coverage

+

+ We proudly serve all London boroughs, including Hackney, ensuring local expertise and rapid response wherever you are in the city. Our Hackney service covers all areas including Shoreditch, Dalston, Stoke Newington, Homerton, Clapton and Hackney Central. +

+ +
+ {['E2', 'E5', 'E8', 'E9', 'N1', 'N16'].map(postcode => ( + + {postcode} + + ))} +
+
+
+
+ + +
+
+
+
+ ); +}; + +export default HackneyBoroughPage; \ No newline at end of file diff --git a/src/pages/IslingtonBoroughPage.tsx b/src/pages/IslingtonBoroughPage.tsx new file mode 100644 index 0000000..a380f07 --- /dev/null +++ b/src/pages/IslingtonBoroughPage.tsx @@ -0,0 +1,637 @@ +import React, { useState, useEffect } from 'react'; +import '../styles/ServiceAreaPage.scss'; +import ServiceAreaLinks from '../components/ServiceAreaLinks'; + +const IslingtonBoroughPage: React.FC = () => { + const [mobileNavOpen, setMobileNavOpen] = useState(false); + + const scrollToSection = (sectionId: string) => { + const element = document.getElementById(sectionId); + if (element) { + const headerHeight = 80; // Header height + const additionalOffset = 20; // Extra padding for better viewing + const elementPosition = element.getBoundingClientRect().top; + const offsetPosition = elementPosition + window.pageYOffset - headerHeight - additionalOffset; + + window.scrollTo({ + top: offsetPosition, + behavior: 'smooth' + }); + setMobileNavOpen(false); + } + }; + + // Update document title, meta description, and schema markup for SEO + React.useEffect(() => { + document.title = 'Islington Pest Control Services | Trusted Exterminators in Islington, London'; + + // Update meta description + const metaDescription = document.querySelector('meta[name="description"]'); + if (metaDescription) { + metaDescription.setAttribute('content', 'Expert pest control in Islington for homes & businesses. Fast, effective solutions for mice, rats, bed bugs, wasps & more. Certified technicians. Call for a free quote!'); + } else { + const meta = document.createElement('meta'); + meta.name = 'description'; + meta.content = 'Expert pest control in Islington for homes & businesses. Fast, effective solutions for mice, rats, bed bugs, wasps & more. Certified technicians. Call for a free quote!'; + document.head.appendChild(meta); + } + + // Add Schema.org structured data + const existingSchema = document.querySelector('script[type="application/ld+json"]'); + if (existingSchema) { + existingSchema.remove(); + } + + const schemaData = { + "@context": "https://schema.org", + "@type": "LocalBusiness", + "additionalType": "PestControlService", + "name": "Pest Pro London - Islington", + "description": "Expert pest control services for homes and businesses in Islington. BPCA certified technicians for rats, mice, bed bugs, wasps and more. Next-day service available.", + "telephone": "+447727049304", + "email": "info@pestpro.london", + "url": "https://www.pestpro.london/service-areas/islington", + "areaServed": { + "@type": "Place", + "name": "Islington, London", + "address": { + "@type": "PostalAddress", + "addressLocality": "Islington", + "addressRegion": "London", + "postalCode": "N1", + "addressCountry": "GB" + } + }, + "serviceArea": { + "@type": "GeoCircle", + "geoMidpoint": { + "@type": "GeoCoordinates", + "latitude": 51.5380, + "longitude": -0.0990 + }, + "geoRadius": "5000" + }, + "hasOfferCatalog": { + "@type": "OfferCatalog", + "name": "Pest Control Services", + "itemListElement": [ + { + "@type": "Offer", + "itemOffered": { + "@type": "Service", + "name": "Residential Pest Control", + "description": "Comprehensive pest control for homes including rats, mice, bed bugs, wasps, and more" + } + }, + { + "@type": "Offer", + "itemOffered": { + "@type": "Service", + "name": "Commercial Pest Control", + "description": "Professional pest management for businesses, restaurants, and commercial properties" + } + } + ] + }, + "openingHours": "Mo-Su 00:00-23:59", + "priceRange": "££", + "review": [ + { + "@type": "Review", + "reviewRating": { + "@type": "Rating", + "ratingValue": "5", + "bestRating": "5" + }, + "author": { + "@type": "Person", + "name": "S. Thompson" + }, + "reviewBody": "Excellent service from start to finish. They came out within 2 hours of my call and completely sorted our rat problem near Upper Street in Angel.", + "datePublished": "2024-07-15" + }, + { + "@type": "Review", + "reviewRating": { + "@type": "Rating", + "ratingValue": "5", + "bestRating": "5" + }, + "author": { + "@type": "Person", + "name": "M. Patel" + }, + "reviewBody": "Our restaurant on Holloway Road has been pest-free since partnering with Pest Pro. Their preventative service keeps us compliant and pest-free.", + "datePublished": "2024-06-20" + } + ], + "aggregateRating": { + "@type": "AggregateRating", + "ratingValue": "5.0", + "reviewCount": "94", + "bestRating": "5" + } + }; + + const script = document.createElement('script'); + script.type = 'application/ld+json'; + script.textContent = JSON.stringify(schemaData); + document.head.appendChild(script); + }, []); + + return ( +
+ {/* Mobile Navigation Toggle */} + + + {/* Mobile Navigation Overlay */} +
setMobileNavOpen(false)} + /> + + {/* Mobile Navigation */} + + + {/* Main Content */} +
+ {/* Hero Section */} +
+
+
+

Your Local Pest Control Experts in Islington, London

+

+ Rapid, effective, and guaranteed pest solutions for homes and businesses across Islington and surrounding areas. +

+ + + +
+
Available 7 days a week
+
Call back within 1 hour
+
Guaranteed results
+
+
+
+
+ +
+ + +
+ {/* Introduction Section */} +
+
+
+

Professional Pest Control Services in Islington

+

Local expertise for Islington's unique pest challenges with guaranteed results

+
+ +
+
+

+ Dealing with pests in Islington can be challenging, whether you're a homeowner near Angel Station or managing a commercial property on Upper Street in the bustling borough. At Pest Pro, we understand the unique pest challenges inherent to the vibrant and diverse Islington area and provide tailored, effective solutions to protect your property and peace of mind. We also help neighbours in Camden and Hackney. +

+ +

+ Our fully qualified, BPCA certified technicians are local experts who live and work in London, ensuring a prompt, reliable, and trustworthy local service specifically designed for Islington residents and businesses. We pride ourselves on quick response times, often attending within 2 hours for urgent issues, and always within 24 hours – if not, we offer a 10% discount! +

+
+ +
+

Islington Service Guarantee

+
    + {[ + 'Response within 24 hours guaranteed', + <>BPCA certified technicians only, + <>SafeContractor approved company, + '30-day guarantee after last sighting', + 'Biodegradable pest control methods', + 'Serving both domestic and commercial clients' + ].map((item, index) => ( +
  • + + {item} +
  • + ))} +
+
+
+
+
+ + {/* Common Pests Section */} +
+
+
+

Common Pest Problems in Islington & How We Solve Them

+

Islington's unique environment presents specific pest challenges. Our local expertise ensures targeted, effective solutions for every situation.

+
+ +
+ {[ + { + name: 'Mice & Rats', + icon: '🐀', + description: 'Effective rodent control in Islington, including comprehensive solutions for rat problems originating from sewers, and drain camera surveys to identify and seal entry points.', + solution: 'Advanced baiting systems, entry point sealing, and ongoing monitoring' + }, + { + name: 'Bed Bugs & Fleas', + icon: '🛏️', + description: 'Discreet and thorough bed bug and flea treatments using advanced methods, including steam/heat treatments and specialist tools.', + solution: 'Heat treatment, chemical solutions, and comprehensive follow-up inspections' + }, + { + name: 'Cockroaches', + icon: '🪳', + description: 'Targeted cockroach extermination for rapid results in residential and commercial settings across Islington.', + solution: 'Gel baiting, spray treatments, and source elimination strategies' + }, + { + name: 'Wasps & Hornets', + icon: '🐝', + description: 'Safe and efficient wasp nest removal and hornet control to reclaim your outdoor spaces.', + solution: 'Professional nest removal, protective treatments, and prevention advice' + }, + { + name: 'Pigeons & Birds', + icon: '🐦', + description: 'Humane bird proofing solutions, including solar panel bird proofing, to protect properties in Islington.', + solution: 'Netting, spikes, deterrent systems, and solar panel protection' + }, + { + name: 'Other Common Pests', + icon: '🐜', + description: 'Comprehensive solutions for ants, squirrels, moths, spiders, cluster flies, and more, ensuring your environment is safe and hygienic.', + solution: 'Tailored treatments based on pest type and infestation severity' + } + ].map((pest, index) => ( +
+ {pest.icon} +

{pest.name}

+

{pest.description}

+
+

Our Solution:

+

{pest.solution}

+
+
+ ))} +
+ + +
+
+ + {/* Services Section */} +
+
+
+

Tailored Pest Control for Islington Homes & Businesses

+

Whether you're protecting your family home or ensuring your business stays pest-free, we provide comprehensive solutions tailored to Islington's unique needs.

+
+ +
+ {/* Residential Services */} +
+
🏠
+

Residential Services

+
    + {[ + 'Targeted pest control using industry-leading technology', + 'Preventative pest control for year-round protection', + 'Seasonal mosquito control for outdoor spaces', + 'Comprehensive termite treatments with advanced baiting systems', + 'Property protection services as part of home improvement offerings', + 'Emergency next-day service for urgent situations' + ].map((service, index) => ( +
  • + + {service} +
  • + ))} +
+
+ + {/* Commercial Services */} +
+
🏢
+

Commercial Services

+
    + {[ + 'Trusted commercial pest control contracts for Islington businesses', + 'Services for schools, food premises, and research centres', + 'Housing associations and property management company solutions', + 'Compliance-focused treatments for regulated industries', + 'Scheduled maintenance programs for ongoing protection', + 'Emergency response for business-critical situations' + ].map((service, index) => ( +
  • + + {service} +
  • + ))} +
+
+
+ + {/* Specialized Treatments */} +
+

+ Specialized Treatments for Islington Clients +

+ +
+ {[ + 'Disinfectant/biocide treatment for post-infestation cleanup', + 'Drain camera surveys to identify hidden entry points', + 'Loft insulation removal & installation for contaminated areas', + 'Fumigation services for severe infestations', + 'Integrated Pest Management (IPM) strategies', + 'Solar panel bird proofing and maintenance' + ].map((treatment, index) => ( +
+

+ {treatment} +

+
+ ))} +
+
+
+
+ + {/* Why Choose Us Section */} +
+
+
+

Why Islington Chooses Pest Pro for Pest Control

+

We're more than just exterminators – we're your local pest control partners, committed to protecting Islington homes and businesses with unmatched expertise and service.

+
+ +
+ {[ + { + icon: '🎯', + title: 'Local Experts for Islington', + description: 'Our technicians are experts in London pests, living and working in the areas we serve, ensuring a deep understanding of local pest behaviours and effective solutions.' + }, + { + icon: '⚡', + title: 'Rapid & Reliable Response', + description: 'We aim to provide a rapid response, often attending within 2 hours, and guaranteeing attendance within 24 hours. Get a call back within 1 hour!' + }, + { + icon: '🛡️', + title: 'Guaranteed Results', + description: 'We are committed to resolving your pest problems with trust, professionalism and fast response. 30-day guarantee after last sighting for your peace of mind.' + }, + { + icon: '🎓', + title: 'Highly Qualified & Certified', + description: 'All our technicians are BPCA certified, and we maintain SafeContractor approval, ensuring the highest standards of health & safety.' + }, + { + icon: '🌱', + title: 'Safe & Environmentally Conscious', + description: 'We utilize safe, legal, and effective pest control methods, including biodegradable insecticides and poisons where appropriate.' + }, + { + icon: '📅', + title: 'Available 7 Days a Week', + description: 'Our technicians work 7 days a week to ensure we are there when you need us most, including emergency weekend service.' + }, + { + icon: '💯', + title: 'Transparent & Fair Pricing', + description: 'We are by far the best value and provide transparent, honest service from initial inquiry to completion with no hidden costs.' + }, + { + icon: '🏆', + title: 'Proven Track Record', + description: 'With hundreds of successful treatments in Islington and across London, our reputation speaks for itself through satisfied customers.' + } + ].map((benefit, index) => ( +
+
{benefit.icon}
+

{benefit.title}

+

{benefit.description}

+
+ ))} +
+
+
+ + {/* Testimonials Section */} +
+
+
+

What Our Islington Customers Say

+
+ +
+ {[ + { + quote: ( + <> + Excellent service from start to finish. They came out within 2 hours of my call and completely sorted our rat problem near Upper Street in Angel. The technician was professional, knowledgeable about local pest issues, and the follow-up service was outstanding. + + ), + author: 'S. Thompson', + location: Angel, + date: 'July 2024' + }, + { + quote: ( + <> + Our café on Holloway Road has been pest-free since we started using Pest Pro. Their preventative service keeps us compliant and pest-free, which is crucial for our business. Highly recommend their commercial services. + + ), + author: 'M. Patel', + location: Holloway Road, + date: 'June 2024' + } + ].map((testimonial, index) => ( +
+
"
+

{testimonial.quote}

+
+

{testimonial.author}

+

{testimonial.location}, {testimonial.date}

+
+
+ ))} +
+ + +
+
+ + {/* Final CTA Section */} +
+
+
+

Ready to Get Rid of Pests in Islington?

+ +

+ Don't let pests disrupt your home or business in Islington. Contact our friendly, knowledgeable team today for a free, personalized quote. We're here to provide the effective, safe, and reliable pest control solutions you need. +

+ + + +
+
+

Phone:

+

077 2704 9304

+
+ +
+

Email:

+

info@pestpro.london

+
+
+
+
+
+ + {/* Service Area Confirmation */} +
+
+
+

Comprehensive Islington Coverage

+

+ We proudly serve all London boroughs, including Islington, ensuring local expertise and rapid response wherever you are in the city. Our Islington service covers all areas including Angel, Highbury, Holloway, Finsbury Park, Clerkenwell, and Barnsbury. +

+ +
+ {['N1', 'N4', 'N5', 'N7', 'N19', 'EC1', 'WC1'].map(postcode => ( + + {postcode} + + ))} +
+
+
+
+ + +
+
+
+
+ ); +}; + +export default IslingtonBoroughPage; \ No newline at end of file diff --git a/src/styles/CamdenBoroughPage.scss b/src/styles/ServiceAreaPage.scss similarity index 94% rename from src/styles/CamdenBoroughPage.scss rename to src/styles/ServiceAreaPage.scss index 07df2b2..0a9fd2b 100644 --- a/src/styles/CamdenBoroughPage.scss +++ b/src/styles/ServiceAreaPage.scss @@ -1,8 +1,9 @@ -// Camden Borough Page Styles -.camden-page { +// Service Area Page Styles +.service-area-page { background-color: #FAFBFC; min-height: 100vh; padding-top: 80px; + padding-bottom: 4rem; // CSS Variables for consistency --primary-color: #059669; @@ -21,32 +22,49 @@ --border-radius-lg: 20px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + .text-link { + color: var(--primary-color); + text-decoration: underline; + } + .container { - max-width: 1200px; + max-width: 1600px; margin: 0 auto; - padding: 0 2rem; + padding: 0 1rem; @media (max-width: 768px) { padding: 0 1rem; } } - // Sticky Navigation Menu - .sticky-nav { - position: fixed; - top: 80px; - left: 2rem; - width: 240px; + .content-wrapper { + display: flex; + align-items: flex-start; + gap: 2rem; + max-width: 1600px; + margin: 2rem auto 0; + padding: 0 1rem; + + @media (max-width: 1024px) { + flex-direction: column; + padding: 0 1rem; + } + } + + .sidebar-nav { + position: sticky; + top: 100px; + align-self: flex-start; + width: 260px; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); padding: 1.25rem; - z-index: 100; border: 1px solid var(--gray-200); - max-height: 80vh; + max-height: calc(100vh - 140px); overflow-y: auto; - @media (max-width: 1400px) { + @media (max-width: 1024px) { display: none; } @@ -140,10 +158,14 @@ } } + .content-sections { + flex: 1; + } + // Mobile Navigation Toggle .mobile-nav-toggle { position: fixed; - top: 90px; + top: 110px; right: 1rem; background: var(--primary-color); color: white; @@ -206,13 +228,7 @@ // Main Content Area .main-content { - margin-left: 320px; - padding-right: 2rem; - - @media (max-width: 1400px) { - margin-left: 0; - padding-right: 0; - } + padding-right: 0; } // Hero Section @@ -822,4 +838,29 @@ opacity: 1; visibility: visible; } -} \ No newline at end of file +} + +.service-area-page .other-areas { + padding: 4rem 0; + background: var(--gray-50); +} + +.service-area-page .other-areas h2 { + text-align: center; + margin-bottom: 1.5rem; +} + +.service-area-page .area-links { + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 1rem; + justify-content: center; + padding: 0; + margin: 0; +} + +.service-area-page .area-links li a { + font-weight: 600; +} + diff --git a/src/styles/globals.css b/src/styles/globals.css index 7a23ee8..7fb4bfe 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -50,7 +50,7 @@ body { /* Enhanced Container System */ .container { - max-width: 1400px; + max-width: 1600px; margin: 0 auto; padding: 0 24px; width: 100%;