TechLead
Lesson 9 of 13
5 min read
SEO

Local SEO

Google Business Profile and local search optimization

Local SEO Fundamentals

Local SEO focuses on optimizing your online presence to attract customers from local searches. It's essential for businesses with physical locations or serving specific geographic areas.

Google Business Profile

Your Google Business Profile (formerly Google My Business) is crucial for local SEO:

  • Complete all fields: Business name, address, phone, hours, categories
  • Add photos: Exterior, interior, products, team
  • Collect reviews: Respond to all reviews professionally
  • Post updates: Share news, offers, and events regularly
  • Add products/services: List what you offer with descriptions
  • Enable messaging: Let customers contact you directly

Local Schema Markup

const localBusinessSchema = {
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "TechLead Academy",
  "image": "https://example.com/photos/storefront.jpg",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Code Street",
    "addressLocality": "San Francisco",
    "addressRegion": "CA",
    "postalCode": "94102",
    "addressCountry": "US"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 37.7749,
    "longitude": -122.4194
  },
  "telephone": "+1-555-123-4567",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
      "opens": "09:00",
      "closes": "18:00"
    }
  ],
  "priceRange": "$$"
};

NAP Consistency

NAP (Name, Address, Phone) must be consistent across the web:

Consistent (Good)

TechLead Academy
123 Code Street
San Francisco, CA 94102
(555) 123-4567

Inconsistent (Bad)

Tech Lead Academy
123 Code St.
SF, California
555-123-4567

Local Citations

List your business on important local directories:

Yelp
Facebook
Apple Maps
Bing Places
Yellow Pages
Industry directories

Local Keyword Optimization

// Local keyword patterns
"[service] in [city]"          // plumber in San Francisco
"[service] near me"            // coffee shop near me
"best [service] [city]"        // best pizza San Francisco
"[service] [neighborhood]"     // dentist Mission District

// Title tag example
<title>Web Development Agency in San Francisco | TechLead</title>

// Local content ideas
- "[City] Guide to [Topic]"
- "Best [Service] in [Neighborhood]"
- "[Year] [City] [Industry] Report"
- Local news and events coverage

Continue Learning