Skip to content

Commit 1febe44

Browse files
authored
feat: add FAQ structured data to enhance SEO and user engagement
1 parent d4b71f4 commit 1febe44

2 files changed

Lines changed: 52 additions & 0 deletions

File tree

public/robots.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,9 @@ Allow: /
109109

110110
User-agent: ProRataInc
111111
Allow: /
112+
113+
User-agent: xai-crawler
114+
Allow: /
115+
116+
User-agent: Grok
117+
Allow: /

src/pages/index.astro

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,52 @@ const structuredData = {
296296
},
297297
],
298298
},
299+
{
300+
"@type": "FAQPage",
301+
"@id": `${siteUrl}/#faq`,
302+
mainEntity: [
303+
{
304+
"@type": "Question",
305+
name: "What does an AI Growth Engineer do?",
306+
acceptedAnswer: {
307+
"@type": "Answer",
308+
text: "An AI Growth Engineer combines AI automation, full-stack web development, and technical SEO into a single growth system. I build custom LLM integrations, n8n workflows, and Model Context Protocol servers that connect AI to real business actions — while also driving organic traffic through technical SEO and Generative Engine Optimization.",
309+
},
310+
},
311+
{
312+
"@type": "Question",
313+
name: "What is Model Context Protocol (MCP) development?",
314+
acceptedAnswer: {
315+
"@type": "Answer",
316+
text: "Model Context Protocol (MCP) is a standard that lets AI agents connect to external tools, databases, and APIs. I build custom MCP servers so your AI agents can read from databases, call internal APIs, update CRMs, and take real actions in your business systems — going beyond simple chatbots to true agentic automation.",
317+
},
318+
},
319+
{
320+
"@type": "Question",
321+
name: "What is Generative Engine Optimization (GEO)?",
322+
acceptedAnswer: {
323+
"@type": "Answer",
324+
text: "Generative Engine Optimization (GEO) is the practice of structuring your content and technical SEO so that AI systems like ChatGPT, Perplexity, Claude, and Google AI Overviews cite your website as a source. It combines schema markup, authoritative content signals, and semantic relevance to get your brand recommended in AI-generated answers.",
325+
},
326+
},
327+
{
328+
"@type": "Question",
329+
name: "Where are you based and do you work with remote clients?",
330+
acceptedAnswer: {
331+
"@type": "Answer",
332+
text: "I am based in Miami, Florida and work with clients across the United States and internationally. All engagements are fully remote with async communication and video calls scheduled in EST/EDT timezone.",
333+
},
334+
},
335+
{
336+
"@type": "Question",
337+
name: "How do I hire Avaab Razzaq for a project?",
338+
acceptedAnswer: {
339+
"@type": "Answer",
340+
text: "The best way to start is by booking a free discovery call or sending a quick inquiry through the contact form at avaabrazzaq.com/contact/. I will review your goals and respond within 24 hours with a proposed scope and next steps.",
341+
},
342+
},
343+
],
344+
},
299345
],
300346
};
301347
---

0 commit comments

Comments
 (0)