# CAMPAIGN URLs - QUICK REFERENCE

Use these URLs in your marketing campaigns:

## Direct Service URLs (Easier to remember)

- **HVAC:** http://localhost/hslg/hvac.php
- **Plumbing:** http://localhost/hslg/plumbing.php
- **Electrical:** http://localhost/hslg/electrical.php
- **Roofing:** http://localhost/hslg/roofing.php
- **Landscaping:** http://localhost/hslg/landscaping.php
- **Cleaning:** http://localhost/hslg/cleaning.php

## Universal URL with Parameters

http://localhost/hslg/capture.php?type=[SERVICE_TYPE]

Replace [SERVICE_TYPE] with: hvac, plumbing, electrical, roofing, landscaping, or cleaning

---

## For Production (Replace localhost with your domain)

Once deployed to your live server, replace `localhost/hslg` with your actual domain:

Example:
- **HVAC:** https://yourdomain.com/hvac.php
- **Plumbing:** https://yourdomain.com/plumbing.php
- etc.

---

## Landing Page Strategy

### Option 1: Direct Links
Create ads or emails that link directly to service-specific pages:
- Facebook Ad for HVAC → https://yourdomain.com/hvac.php
- Email campaign for Plumbing → https://yourdomain.com/plumbing.php

### Option 2: Custom Landing Pages
Create full landing pages that link to capture forms:

```html
<!-- landing-hvac.html -->
<h1>Free HVAC Website Preview</h1>
<p>See what your new website could look like...</p>
<a href="hvac.php" class="cta-button">Get My Free Preview</a>
```

### Option 3: QR Codes
Generate QR codes for each service:
- Print on business cards
- Door hangers
- Vehicle magnets
- Trade show materials

Use a QR code generator with these URLs.

---

## Testing Each Service

Before launching campaigns, test each capture form:

1. Visit each URL
2. Fill out form with real business info
3. Verify Google reviews are pulled (if business has GBP)
4. Check AI description is generated
5. Confirm email sequence enrollment
6. Test preview page display

---

## Tracking Performance

Add UTM parameters to track campaign performance:

```
https://yourdomain.com/hvac.php?utm_source=facebook&utm_medium=paid&utm_campaign=hvac-june
```

Track in Google Analytics or your preferred analytics tool.

---

## Email Signature Example

Add to your email signature:

```
---
Rod Caverly
Digital Marketing Specialist
Loyal Fan Loop

See what your new website could look like:
🔧 HVAC: yourdomain.com/hvac.php
🚿 Plumbing: yourdomain.com/plumbing.php
💡 Electrical: yourdomain.com/electrical.php
```

---

## Social Media Bio Links

For platforms with single link limits (Instagram, TikTok), create a Linktree-style page:

```html
<!-- links.html -->
<h1>Free Website Previews</h1>
<div class="link-list">
  <a href="hvac.php">HVAC Companies</a>
  <a href="plumbing.php">Plumbers</a>
  <a href="electrical.php">Electricians</a>
  <a href="roofing.php">Roofers</a>
  <a href="landscaping.php">Landscapers</a>
  <a href="cleaning.php">Cleaning Services</a>
</div>
```

Then use: yourdomain.com/links.html as your bio link.
