Transform the Warsaw Tactical website from a traditional SEO-optimized site to one that ranks in LLM-generated answers (ChatGPT, Perplexity, Google AI Overviews). Based on the Princeton GEO study, key improvements can boost visibility by 30-40%.
Strengths:
Critical Gaps for GEO:
Files: _includes/head.html
Add missing schemas:
Person schema for Dawid Fajer:
{
"@type": "Person",
"name": "Dawid Fajer",
"jobTitle": "Lead Instructor",
"worksFor": {"@type": "Organization", "name": "Warsaw Tactical"},
"knowsAbout": ["Tactical Firearms Training", "CQB", "Krav Maga", "BJJ"],
"memberOf": ["Way of the Knife"],
"sameAs": ["https://instagram.com/way.of.the.knife"]
}
Course schema for each course page:
{
"@type": "Course",
"name": "Dynamic Pistol Level 1",
"description": "...",
"provider": {"@type": "Organization", "name": "Warsaw Tactical"},
"courseCode": "DP-L1",
"educationalLevel": "Beginner",
"hasCourseInstance": {...}
}
LocalBusiness schema enhancement:
{
"@type": "LocalBusiness",
"name": "Warsaw Tactical",
"address": {...},
"geo": {"@type": "GeoCoordinates", "latitude": "52.2297", "longitude": "21.0122"},
"priceRange": "€500-€1200"
}
File: _includes/head.html
Update sameAs array to include:
Files: /dynamic-pistol.html, /pistol-cqb.html, /close-contact-gunfighter.html, /2-day-gunfighter.html
Add “authority bombs” - specific data points AI can cite:
All course pages and homepage
Every H2/H3 section should start with a 40-60 word definitive answer that LLMs can extract verbatim.
Before:
<h2>About Us</h2>
<p>Warsaw Tactical is brought to you by the team behind Way of the Knife...</p>
After:
<h2>What is Warsaw Tactical?</h2>
<p><strong>Warsaw Tactical is a professional firearms training facility in Poland offering tactical courses to European civilians and professionals, led by Dawid Fajer, a certified instructor who has trained special forces operators including GROM units.</strong> Founded in partnership with Way of the Knife...</p>
File: /faq.html (new standalone page, linked from footer)
Created extended FAQ page with 20 Q&As targeting LLM prompts and foreigner concerns:
Each answer starts with direct response and includes internal links.
File: /dawid-fajer.html
Updated with specific credentials:
All pages with tables
Ensure any tabular data is also stated in paragraph form so LLMs can parse it.
All images
Ensure descriptive, keyword-rich alt text:
All course pages
Add clear progression path with contextual links:
Course pages
Reference authoritative sources:
Example: “Curriculum incorporates elements from the 4C/ID didactic framework used in professional law enforcement firearms instruction.”
File: /index.html
Add schema markup for testimonials:
{
"@type": "Review",
"reviewBody": "...",
"author": {"@type": "Organization", "name": "GROM Special Forces Unit"},
"reviewRating": {"@type": "Rating", "ratingValue": "5"}
}
Create standalone pages for LLM discovery:
/what-is-cqb-training.html - Definitive guide/firearms-training-poland-for-foreigners.html - Legal guide/tactical-training-europe-guide.html - Comparison contentThese become citable sources for LLMs answering related queries.
Create step-by-step procedural content:
| Priority | Action | Impact | Effort | Status |
|---|---|---|---|---|
| 1 | Add Person/Course/LocalBusiness schemas | +30% | Low | ✅ Done |
| 2 | Add statistics to course pages | +40% | Low | ✅ Done |
| 3 | Expand sameAs links | +10% | Trivial | ✅ Done |
| 4 | Citation hooks on all sections | +25% | Medium | Pending |
| 5 | Expand FAQ with LLM questions | +30% | Medium | ✅ Done |
| 6 | Instructor bio densification | +35% | Medium | ✅ Done |
| 7 | External citations/references | +40% | Medium | Pending |
| 8 | Technical content pages | +40% | High | Pending |
| 9 | Review collection system | +25% | Ongoing | Pending |
_includes/head.html - Schema markup (Person, Course, LocalBusiness) ✅/faq.html - Extended FAQ page (20 Q&As) ✅/dynamic-pistol.html - Course schema + statistics ✅/pistol-cqb.html - Course schema + statistics ✅/close-contact-gunfighter.html - Course schema + statistics ✅/2-day-gunfighter.html - Course schema + statistics ✅/dawid-fajer.html - Credential densification ✅/_includes/footer.html - FAQ link added ✅/index.html - Citation hooks + testimonial schema (pending)After implementation: