Back to Blog

Why Is My Website Not Ranking on Google? 7 Things to Check

2026-01-158 min

You built a website. It's live. But when you search for it on Google — nothing. Not even on page 10.

This is the #1 frustration for new site owners. The good news: there's usually a specific, fixable reason. Here are the 7 most common ones.

1. Google Hasn't Found Your Site Yet

The problem: If your site is brand new (under 2 weeks old), Google may not have crawled it yet.

How to check: Search site:yourdomain.com on Google. If zero results show up, Google hasn't indexed you.

How to fix:

  1. Submit your sitemap to [Google Search Console](https://search.google.com/search-console)
  2. Use the URL Inspection tool to request indexing for your homepage
  3. Make sure your robots.txt isn't blocking Googlebot

Time to fix: 10 minutes. But indexing takes 3-14 days.

2. Your Pages Don't Have Title Tags

The problem: The </code> tag is the single most important on-page SEO element. Without it, Google doesn't know what your page is about.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> View page source (right-click → View Source), search for <code style="background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em"><title></code>.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to fix:</strong> Add a title to every page. Pattern: <code style="background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em">[Primary Keyword] — [Modifier] | [Brand]</code></p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)">Example: <code style="background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em">Site Audit Tool — Find SEO Issues Fast | SEOBolt</code></p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> 5 minutes per page.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">3. Your Site Has Broken Links (404 Errors)</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">The problem:</strong> Broken internal links waste Google's "crawl budget." If Google hits too many 404s, it crawls your site less frequently.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> Run a site audit. Look for pages returning 404 status codes.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to fix:</strong> Either restore the page or set up a 301 redirect to the closest relevant page. [Full guide to fixing broken links](/blog/find-fix-broken-links).</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> 15 minutes for most sites.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">4. Your Content Is Too Thin</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">The problem:</strong> Pages with under 50 words are flagged as "thin content" by Google. This includes pages that are mostly images, forms, or JavaScript with little actual text.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> Run an audit that measures word count per page.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">What counts as thin:</strong></p><ul class="space-y-2 my-4 pl-4"><li class="text-sm leading-relaxed flex items-start gap-2" style="color:var(--text-secondary)"><span style="color:var(--accent)">•</span><span>Product pages with only a title and price</span></li><li class="text-sm leading-relaxed flex items-start gap-2" style="color:var(--text-secondary)"><span style="color:var(--accent)">•</span><span>Blog posts under 300 words</span></li><li class="text-sm leading-relaxed flex items-start gap-2" style="color:var(--text-secondary)"><span style="color:var(--accent)">•</span><span>Landing pages with only a heading and a form</span></li></ul><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to fix:</strong> Add meaningful content. For blog posts, aim for 1000+ words. For product pages, add descriptions, specs, FAQs.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> 30 minutes per page.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">5. Your robots.txt Is Blocking Google</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">The problem:</strong> Your robots.txt file might accidentally block Googlebot from crawling important pages.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> Visit <code style="background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em">yourdomain.com/robots.txt</code>. Look for:</p><pre class="rounded-lg p-4 text-sm overflow-x-auto my-4" style="background:var(--bg-primary);border:1px solid var(--border)"><code>User-agent: * Disallow: /</code></pre><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)">This blocks ALL crawlers from your ENTIRE site.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to fix:</strong> Only disallow private routes:</p><pre class="rounded-lg p-4 text-sm overflow-x-auto my-4" style="background:var(--bg-primary);border:1px solid var(--border)"><code>User-agent: * Allow: / Disallow: /api/ Disallow: /dashboard/ Disallow: /admin/ Sitemap: https://yourdomain.com/sitemap.xml</code></pre><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> 5 minutes.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">6. Your Pages Are Slow</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">The problem:</strong> Google uses page speed as a ranking factor. Pages over 3 seconds have a 53% bounce rate on mobile.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> Use Google PageSpeed Insights or run a site audit that measures load times.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Common causes:</strong></p><div class="overflow-x-auto my-4"><table class="w-full text-sm border rounded-lg overflow-hidden"><thead><tr style="background:var(--bg-secondary)"><th class="text-left p-3 font-semibold border-b">Cause</th><th class="text-left p-3 font-semibold border-b">Fix</th></tr></thead><tbody><tr class="border-b last:border-b-0"><td class="p-3">Uncompressed images</td><td class="p-3">Use WebP format, compress to <100KB</td></tr><tr class="border-b last:border-b-0"><td class="p-3">Too much JavaScript</td><td class="p-3">Defer non-critical scripts</td></tr><tr class="border-b last:border-b-0"><td class="p-3">No caching headers</td><td class="p-3">Add Cache-Control headers</td></tr><tr class="border-b last:border-b-0"><td class="p-3">No CDN</td><td class="p-3">Use Cloudflare or Vercel Edge</td></tr></tbody></table></div><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> 1-2 hours.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">7. You Have No Backlinks</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">The problem:</strong> Backlinks are votes of confidence from other websites. A site with zero backlinks struggles to rank for anything competitive.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to check:</strong> Search <code style="background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em">link:yourdomain.com</code> on Google, or run a backlink check in SEOBolt.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">How to fix (starter backlinks):</strong></p><ol class="space-y-2 my-4 pl-4 list-decimal list-inside"><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span>Submit to directories: Product Hunt, AlternativeTo, G2</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span>Write guest posts on relevant blogs</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span>Create content worth linking to (original research, tools, templates)</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span>Reach out to sites that link to competitors but not you</span></li></ol><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)"><strong style="color:var(--text-primary)">Time to fix:</strong> Ongoing — aim for 5-10 new backlinks per month.</p><h2 class="text-2xl font-bold mt-10 mb-4" style="color:var(--text-primary)">How to Check All 7 at Once</h2><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)">Instead of checking each thing manually, run a site audit that checks everything:</p><ol class="space-y-2 my-4 pl-4 list-decimal list-inside"><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span><strong style="color:var(--text-primary)">Add your domain</strong> to SEOBolt</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span><strong style="color:var(--text-primary)">Click "Start Audit"</strong> — crawls your site in 1-3 minutes</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span><strong style="color:var(--text-primary)">See your Action Plan</strong> — issues grouped by priority (Critical → High → Medium → Low)</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span><strong style="color:var(--text-primary)">Fix the top items</strong> — each one shows exactly how to fix it</span></li><li class="text-sm leading-relaxed" style="color:var(--text-secondary)"><span><strong style="color:var(--text-primary)">Re-crawl</strong> — see your progress (Health Score: before → after)</span></li></ol><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)">Most sites can fix the critical issues in under an hour. That single hour of work can be the difference between invisible and page 1.</p><p class="text-sm leading-relaxed my-3" style="color:var(--text-secondary)">[Run your free site audit now](/register) — takes 2 minutes to see what's holding your site back.</p></div><div class="mt-12 rounded-xl p-8 text-center" style="background:var(--bg-card);border:1px solid var(--border)"><h3 class="text-xl font-bold mb-2">Ready to improve your SEO?</h3><p class="text-sm mb-6" style="color:var(--text-secondary)">Free plan available. 14+ SEO tools in one platform.</p><div class="flex items-center justify-center gap-4"><a class="px-6 py-3 rounded-lg font-medium text-sm text-white" style="background:var(--accent)" href="/register">Get Started Free</a><a class="px-6 py-3 rounded-lg font-medium text-sm border" href="/pricing">View Pricing</a></div></div></div></article><section class="py-12 px-6" style="background:var(--bg-secondary)"><div class="max-w-3xl mx-auto"><h2 class="text-xl font-bold mb-6">Related Posts</h2><div class="grid gap-4"><a class="flex items-center justify-between rounded-lg p-4 transition-colors" style="background:var(--bg-card);border:1px solid var(--border)" href="/blog/seo-audit-checklist-2026"><div><h3 class="font-semibold text-sm">SEO Audit Checklist: The Only 12 Things That Actually Matter</h3><p class="text-xs mt-1" style="color:var(--text-secondary)">7 min<!-- --> read</p></div><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right" aria-hidden="true" style="color:var(--accent)"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a><a class="flex items-center justify-between rounded-lg p-4 transition-colors" style="background:var(--bg-card);border:1px solid var(--border)" href="/blog/what-keywords-am-i-ranking-for-free"><div><h3 class="font-semibold text-sm">What Keywords Am I Already Ranking For? (Without Paying for Ahrefs)</h3><p class="text-xs mt-1" style="color:var(--text-secondary)">6 min<!-- --> read</p></div><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right" aria-hidden="true" style="color:var(--accent)"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a><a class="flex items-center justify-between rounded-lg p-4 transition-colors" style="background:var(--bg-card);border:1px solid var(--border)" href="/blog/which-seo-issues-to-fix-first"><div><h3 class="font-semibold text-sm">How to Know Which SEO Issues to Fix First</h3><p class="text-xs mt-1" style="color:var(--text-secondary)">5 min<!-- --> read</p></div><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right" aria-hidden="true" style="color:var(--accent)"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a></div></div></section><footer class="border-t py-8 px-4 text-center" style="border-color:var(--border);background:var(--bg-secondary)"><p class="text-xs mb-4" style="color:var(--text-secondary)">More from our team</p><div class="flex flex-wrap justify-center gap-2 max-w-3xl mx-auto"><a href="https://autoshort.org?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="AI Video Generator"><span>🎬</span><span>AutoShort</span></a><a href="https://billsai.cc?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="Smart Finance Tracker"><span>💰</span><span>BillsAI</span></a><a href="https://aisend.app?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="AI Email Platform"><span>📧</span><span>AiSend</span></a><a href="https://bettercv.app?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="AI Resume Builder"><span>📄</span><span>BetterCV</span></a><a href="https://betterkid.app?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="Kids Learning App"><span>🧒</span><span>BetterKid</span></a><a href="https://airdropfi.xyz?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="Crypto Airdrop Tracker"><span>🪂</span><span>AirdropFi</span></a><a href="https://bugsly.dev?ref=seobolt.app" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors" style="background:var(--bg-card);border:1px solid var(--border);color:var(--text-primary)" title="Error Tracking"><span>🐛</span><span>Bugsly</span></a></div><p class="text-xs mt-4" style="color:var(--text-secondary)">Built by<!-- --> <a href="https://github.com/kienpt91" target="_blank" rel="noopener noreferrer" style="color:var(--accent)">KienPhan</a></p></footer></div><!--$--><!--/$--><script src="https://seobolt.app/ecosystem-widget.js" defer=""></script><script>window.lemonSqueezyAffiliateConfig = { store: "autoshorts" };</script><script src="https://lmsqueezy.com/affiliate.js" defer=""></script><script src="/_next/static/chunks/13dd175e75e054d2.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[188803,[\"/_next/static/chunks/e84ce70832c68092.js\"],\"SessionProvider\"]\n3:I[722071,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"default\"]\n4:I[161067,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"default\"]\nd:I[563491,[\"/_next/static/chunks/21eeab26c1296f6f.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adf33746d03a0ddc.css\",\"style\"]\n:HL[\"/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"95jZiUg1ASfzKeISkTtDB\",\"c\":[\"\",\"blog\",\"why-website-not-ranking-google\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"blog\",{\"children\":[[\"slug\",\"why-website-not-ranking-google\",\"d\"],{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/adf33746d03a0ddc.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/e84ce70832c68092.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$undefined\",[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"SoftwareApplication\\\",\\\"name\\\":\\\"SEOBolt\\\",\\\"applicationCategory\\\":\\\"BusinessApplication\\\",\\\"operatingSystem\\\":\\\"Web\\\",\\\"description\\\":\\\"The fastest self-hosted SEO platform. Ahrefs \u0026 SEMrush alternative at 60% lower cost. Site audits, rank tracking, backlinks, keyword research, and AI content writer.\\\",\\\"url\\\":\\\"https://seobolt.app\\\",\\\"offers\\\":[{\\\"@type\\\":\\\"Offer\\\",\\\"price\\\":\\\"0\\\",\\\"priceCurrency\\\":\\\"USD\\\",\\\"name\\\":\\\"Free\\\",\\\"description\\\":\\\"2 projects, 3 crawls/month\\\"},{\\\"@type\\\":\\\"Offer\\\",\\\"price\\\":\\\"19\\\",\\\"priceCurrency\\\":\\\"USD\\\",\\\"name\\\":\\\"Starter\\\",\\\"description\\\":\\\"10 projects, 30 crawls/month\\\"},{\\\"@type\\\":\\\"Offer\\\",\\\"price\\\":\\\"49\\\",\\\"priceCurrency\\\":\\\"USD\\\",\\\"name\\\":\\\"Pro\\\",\\\"description\\\":\\\"50 projects, 100 crawls/month\\\"},{\\\"@type\\\":\\\"Offer\\\",\\\"price\\\":\\\"99\\\",\\\"priceCurrency\\\":\\\"USD\\\",\\\"name\\\":\\\"Business\\\",\\\"description\\\":\\\"Unlimited projects \u0026 crawls\\\"}]}\"}}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"SEOBolt\\\",\\\"url\\\":\\\"https://seobolt.app\\\",\\\"logo\\\":\\\"https://seobolt.app/logo.png\\\",\\\"description\\\":\\\"Self-hosted SEO platform for developers, founders, and AI agents.\\\",\\\"sameAs\\\":[\\\"https://github.com/airdropfi/seotools\\\"],\\\"contactPoint\\\":{\\\"@type\\\":\\\"ContactPoint\\\",\\\"contactType\\\":\\\"customer support\\\",\\\"email\\\":\\\"support@seobolt.app\\\"}}\"}}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"FAQPage\\\",\\\"mainEntity\\\":[{\\\"@type\\\":\\\"Question\\\",\\\"name\\\":\\\"Is SEOBolt really self-hosted?\\\",\\\"acceptedAnswer\\\":{\\\"@type\\\":\\\"Answer\\\",\\\"text\\\":\\\"Yes. You own the server, the data, and the code. Deploy on any VPS with Docker and Kamal. No vendor lock-in.\\\"}},{\\\"@type\\\":\\\"Question\\\",\\\"name\\\":\\\"How does SEOBolt compare to Ahrefs?\\\",\\\"acceptedAnswer\\\":{\\\"@type\\\":\\\"Answer\\\",\\\"text\\\":\\\"SEOBolt covers Site Audit, Rank Tracker, Backlinks, Keywords Explorer, Content Optimizer, and more. Same core features, 60-75% cheaper at $49/mo vs $129/mo.\\\"}},{\\\"@type\\\":\\\"Question\\\",\\\"name\\\":\\\"Does SEOBolt work with AI assistants?\\\",\\\"acceptedAnswer\\\":{\\\"@type\\\":\\\"Answer\\\",\\\"text\\\":\\\"Yes. SEOBolt has a built-in MCP server for Claude and a REST API. AI agents can sign up, run audits, and get results programmatically.\\\"}},{\\\"@type\\\":\\\"Question\\\",\\\"name\\\":\\\"Is there a free plan?\\\",\\\"acceptedAnswer\\\":{\\\"@type\\\":\\\"Answer\\\",\\\"text\\\":\\\"Yes. The free plan includes 2 projects, 3 crawls per month, and 100 pages per crawl. All paid plans have a 7-day free trial.\\\"}}]}\"}}]]}],[\"$\",\"body\",null,{\"className\":\"geist_dbbf8c4b-module__5qCx7q__variable antialiased\",\"children\":[[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":\"$L5\"}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],\"$L6\",\"$L7\",\"$L8\"]}]]}]]}],{\"children\":[\"$L9\",{\"children\":[\"$La\",{\"children\":[\"$Lb\",{},null,false,false]},null,false,false]},null,false,false]},null,false,false],\"$Lc\",false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"f:I[978621,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"OutletBoundary\"]\n10:\"$Sreact.suspense\"\n12:I[978621,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"ViewportBoundary\"]\n14:I[978621,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"MetadataBoundary\"]\n5:[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]\n6:[\"$\",\"script\",null,{\"src\":\"https://seobolt.app/ecosystem-widget.js\",\"defer\":true}]\n7:[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"window.lemonSqueezyAffiliateConfig = { store: \\\"autoshorts\\\" };\"}}]\n8:[\"$\",\"script\",null,{\"src\":\"https://lmsqueezy.com/affiliate.js\",\"defer\":true}]\n9:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\na:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\nb:[\"$\",\"$1\",\"c\",{\"children\":[\"$Le\",[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/c9516d2426b26edd.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"$10\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@11\"}]}]]}]\nc:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L12\",null,{\"children\":\"$L13\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L14\",null,{\"children\":[\"$\",\"$10\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L15\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\n"])</script><script>self.__next_f.push([1,"16:I[733820,[\"/_next/static/chunks/e84ce70832c68092.js\",\"/_next/static/chunks/c9516d2426b26edd.js\"],\"\"]\n17:I[83736,[\"/_next/static/chunks/e84ce70832c68092.js\",\"/_next/static/chunks/c9516d2426b26edd.js\"],\"Image\"]\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"Article\\\",\\\"headline\\\":\\\"Why Is My Website Not Ranking on Google? 7 Things to Check\\\",\\\"description\\\":\\\"Your site is live but invisible on Google. Here are the 7 most common reasons — and how to fix each one in under an hour.\\\",\\\"datePublished\\\":\\\"2026-01-15\\\",\\\"author\\\":{\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"SEOBolt\\\",\\\"url\\\":\\\"https://seobolt.app\\\"},\\\"publisher\\\":{\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"SEOBolt\\\",\\\"logo\\\":{\\\"@type\\\":\\\"ImageObject\\\",\\\"url\\\":\\\"https://seobolt.app/logo.png\\\"}}}\"}}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"BreadcrumbList\\\",\\\"itemListElement\\\":[{\\\"@type\\\":\\\"ListItem\\\",\\\"position\\\":1,\\\"name\\\":\\\"Home\\\",\\\"item\\\":\\\"https://seobolt.app\\\"},{\\\"@type\\\":\\\"ListItem\\\",\\\"position\\\":2,\\\"name\\\":\\\"Blog\\\",\\\"item\\\":\\\"https://seobolt.app/blog\\\"},{\\\"@type\\\":\\\"ListItem\\\",\\\"position\\\":3,\\\"name\\\":\\\"Why Is My Website Not Ranking on Google? 7 Things to Check\\\",\\\"item\\\":\\\"https://seobolt.app/blog/why-website-not-ranking-google\\\"}]}\"}}],[\"$\",\"div\",null,{\"style\":{\"background\":\"var(--bg-primary)\",\"color\":\"var(--text-primary)\"},\"children\":[[\"$\",\"nav\",null,{\"className\":\"flex items-center justify-between px-6 py-4 max-w-6xl mx-auto\",\"children\":[[\"$\",\"$L16\",null,{\"href\":\"/\",\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"$L17\",null,{\"src\":\"/logo.png\",\"alt\":\"SEOBolt\",\"width\":36,\"height\":36,\"className\":\"w-9 h-9 rounded-lg\"}],[\"$\",\"span\",null,{\"className\":\"font-bold text-lg\",\"children\":\"SEOBolt\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-4 text-sm\",\"children\":[[\"$\",\"$L16\",null,{\"href\":\"/blog\",\"className\":\"hover:underline\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":\"Blog\"}],[\"$\",\"$L16\",null,{\"href\":\"/pricing\",\"className\":\"hover:underline\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":\"Pricing\"}],[\"$\",\"$L16\",null,{\"href\":\"/login\",\"className\":\"px-4 py-2 rounded-lg\",\"style\":{\"background\":\"var(--accent)\",\"color\":\"white\"},\"children\":\"Sign In\"}]]}]]}],[\"$\",\"article\",null,{\"className\":\"py-12 px-6\",\"children\":[\"$\",\"div\",null,{\"className\":\"max-w-3xl mx-auto\",\"children\":[[\"$\",\"$L16\",null,{\"href\":\"/blog\",\"className\":\"inline-flex items-center gap-1 text-sm mb-8\",\"style\":{\"color\":\"var(--accent)\"},\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":14,\"height\":14,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-arrow-left\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"1l729n\",{\"d\":\"m12 19-7-7 7-7\"}],[\"$\",\"path\",\"x3x0zl\",{\"d\":\"M19 12H5\"}],\"$undefined\"]}],\" Back to Blog\"]}],[\"$\",\"h1\",null,{\"className\":\"text-3xl sm:text-4xl font-bold tracking-tight mb-4\",\"children\":\"Why Is My Website Not Ranking on Google? 7 Things to Check\"}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-4 mb-10\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[[\"$\",\"span\",null,{\"className\":\"flex items-center gap-1 text-sm\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":14,\"height\":14,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-calendar\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"1cmpym\",{\"d\":\"M8 2v4\"}],[\"$\",\"path\",\"4m81vk\",{\"d\":\"M16 2v4\"}],[\"$\",\"rect\",\"1hopcy\",{\"width\":\"18\",\"height\":\"18\",\"x\":\"3\",\"y\":\"4\",\"rx\":\"2\"}],[\"$\",\"path\",\"8toen8\",{\"d\":\"M3 10h18\"}],\"$undefined\"]}],\"2026-01-15\"]}],[\"$\",\"span\",null,{\"className\":\"flex items-center gap-1 text-sm\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":14,\"height\":14,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-clock\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"circle\",\"1mglay\",{\"cx\":\"12\",\"cy\":\"12\",\"r\":\"10\"}],[\"$\",\"path\",\"mmk7yg\",{\"d\":\"M12 6v6l4 2\"}],\"$undefined\"]}],\"8 min\"]}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"p\",\"0\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"You built a website. It's live. But when you search for it on Google — nothing. Not even on page 10.\"}}],\"$L18\",\"$L19\",\"$L1a\",\"$L1b\",\"$L1c\",\"$L1d\",\"$L1e\",\"$L1f\",\"$L20\",\"$L21\",\"$L22\",\"$L23\",\"$L24\",\"$L25\",\"$L26\",\"$L27\",\"$L28\",\"$L29\",\"$L2a\",\"$L2b\",\"$L2c\",\"$L2d\",\"$L2e\",\"$L2f\",\"$L30\",\"$L31\",\"$L32\",\"$L33\",\"$L34\",\"$L35\",\"$L36\",\"$L37\",\"$L38\",\"$L39\",\"$L3a\",\"$L3b\",\"$L3c\",\"$L3d\",\"$L3e\",\"$L3f\",\"$L40\",\"$L41\",\"$L42\",\"$L43\",\"$L44\",\"$L45\",\"$L46\",\"$L47\",\"$L48\",\"$L49\"]}],\"$L4a\"]}]}],\"$L4b\",\"$L4c\"]}]]\n"])</script><script>self.__next_f.push([1,"18:[\"$\",\"p\",\"1\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"This is the #1 frustration for new site owners. The good news: there's usually a specific, fixable reason. Here are the 7 most common ones.\"}}]\n19:[\"$\",\"h2\",\"2\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"1. Google Hasn't Found Your Site Yet\"}]\n1a:[\"$\",\"p\",\"3\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e If your site is brand new (under 2 weeks old), Google may not have crawled it yet.\"}}]\n1b:[\"$\",\"p\",\"4\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Search \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003esite:yourdomain.com\u003c/code\u003e on Google. If zero results show up, Google hasn't indexed you.\"}}]\n1c:[\"$\",\"p\",\"5\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix:\u003c/strong\u003e\"}}]\n1d:[\"$\",\"ol\",\"6\",{\"className\":\"space-y-2 my-4 pl-4 list-decimal list-inside\",\"children\":[[\"$\",\"li\",\"0\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Submit your sitemap to [Google Search Console](https://search.google.com/search-console)\"}}]}],[\"$\",\"li\",\"1\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Use the URL Inspection tool to request indexing for your homepage\"}}]}],[\"$\",\"li\",\"2\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Make sure your robots.txt isn't blocking Googlebot\"}}]}]]}]\n1e:[\"$\",\"p\",\"7\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 10 minutes. But indexing takes 3-14 days.\"}}]\n1f:[\"$\",\"h2\",\"8\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"2. Your Pages Don't Have Title Tags\"}]\n20:[\"$\",\"p\",\"9\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e The \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003e\u003ctitle\u003e\u003c/code\u003e tag is the single most important on-page SEO element. Without it, Google doesn't know what your page is about.\"}}]\n21:[\"$\",\"p\",\"10\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e View page source (right-click → View Source), search for \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003e\u003ctitle\u003e\u003c/code\u003e.\"}}]\n22:[\"$\",\"p\",\"11\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix:\u003c/strong\u003e Add a title to every page. Pattern: \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003e[Primary Keyword] — [Modifier] | [Brand]\u003c/code\u003e\"}}]\n23:[\"$\",\"p\",\"12\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"Example: \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003eSite Audit Tool — Find SEO Issues Fast | SEOBolt\u003c/code\u003e\"}}]\n24:[\"$\",\"p\",\"13\",{\"className\":\"text-sm leading-r"])</script><script>self.__next_f.push([1,"elaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 5 minutes per page.\"}}]\n25:[\"$\",\"h2\",\"14\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"3. Your Site Has Broken Links (404 Errors)\"}]\n26:[\"$\",\"p\",\"15\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e Broken internal links waste Google's \\\"crawl budget.\\\" If Google hits too many 404s, it crawls your site less frequently.\"}}]\n27:[\"$\",\"p\",\"16\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Run a site audit. Look for pages returning 404 status codes.\"}}]\n28:[\"$\",\"p\",\"17\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix:\u003c/strong\u003e Either restore the page or set up a 301 redirect to the closest relevant page. [Full guide to fixing broken links](/blog/find-fix-broken-links).\"}}]\n29:[\"$\",\"p\",\"18\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 15 minutes for most sites.\"}}]\n2a:[\"$\",\"h2\",\"19\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"4. Your Content Is Too Thin\"}]\n2b:[\"$\",\"p\",\"20\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e Pages with under 50 words are flagged as \\\"thin content\\\" by Google. This includes pages that are mostly images, forms, or JavaScript with little actual text.\"}}]\n2c:[\"$\",\"p\",\"21\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Run an audit that measures word count per page.\"}}]\n2d:[\"$\",\"p\",\"22\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eWhat counts as thin:\u003c/strong\u003e\"}}]\n2e:[\"$\",\"ul\",\"23\",{\"className\":\"space-y-2 my-4 pl-4\",\"children\":[[\"$\",\"li\",\"0\",{\"className\":\"text-sm leading-relaxed flex items-start gap-2\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[[\"$\",\"span\",null,{\"style\":{\"color\":\"var(--accent)\"},\"children\":\"•\"}],[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Product pages with only a title and price\"}}]]}],[\"$\",\"li\",\"1\",{\"className\":\"text-sm leading-relaxed flex items-start gap-2\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[[\"$\",\"span\",null,{\"style\":{\"color\":\"var(--accent)\"},\"children\":\"•\"}],[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Blog posts under 300 words\"}}]]}],[\"$\",\"li\",\"2\",{\"className\":\"text-sm leading-relaxed flex items-start gap-2\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[[\"$\",\"span\",null,{\"style\":{\"color\":\"var(--accent)\"},\"children\":\"•\"}],[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Landing pages with only a heading and a form\"}}]]}]]}]\n2f:[\"$\",\"p\",\"24\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix:\u003c/strong\u003e Add meaningful content. For blog posts, aim for 1000+ words. For product pages, add descriptions, specs, FAQs.\"}}]\n30:[\"$\",\"p\",\"25\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 30 minutes per page.\"}}]\n31:[\"$\",\"h2\",\"26\",{\"className\":\"text-2xl fon"])</script><script>self.__next_f.push([1,"t-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"5. Your robots.txt Is Blocking Google\"}]\n32:[\"$\",\"p\",\"27\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e Your robots.txt file might accidentally block Googlebot from crawling important pages.\"}}]\n33:[\"$\",\"p\",\"28\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Visit \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003eyourdomain.com/robots.txt\u003c/code\u003e. Look for:\"}}]\n34:[\"$\",\"pre\",\"29\",{\"className\":\"rounded-lg p-4 text-sm overflow-x-auto my-4\",\"style\":{\"background\":\"var(--bg-primary)\",\"border\":\"1px solid var(--border)\"},\"children\":[\"$\",\"code\",null,{\"children\":\"User-agent: *\\nDisallow: /\"}]}]\n35:[\"$\",\"p\",\"30\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"This blocks ALL crawlers from your ENTIRE site.\"}}]\n36:[\"$\",\"p\",\"31\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix:\u003c/strong\u003e Only disallow private routes:\"}}]\n37:[\"$\",\"pre\",\"32\",{\"className\":\"rounded-lg p-4 text-sm overflow-x-auto my-4\",\"style\":{\"background\":\"var(--bg-primary)\",\"border\":\"1px solid var(--border)\"},\"children\":[\"$\",\"code\",null,{\"children\":\"User-agent: *\\nAllow: /\\nDisallow: /api/\\nDisallow: /dashboard/\\nDisallow: /admin/\\n\\nSitemap: https://yourdomain.com/sitemap.xml\"}]}]\n38:[\"$\",\"p\",\"33\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 5 minutes.\"}}]\n39:[\"$\",\"h2\",\"34\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"6. Your Pages Are Slow\"}]\n3a:[\"$\",\"p\",\"35\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e Google uses page speed as a ranking factor. Pages over 3 seconds have a 53% bounce rate on mobile.\"}}]\n3b:[\"$\",\"p\",\"36\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Use Google PageSpeed Insights or run a site audit that measures load times.\"}}]\n3c:[\"$\",\"p\",\"37\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eCommon causes:\u003c/strong\u003e\"}}]\n3d:[\"$\",\"div\",\"38\",{\"className\":\"overflow-x-auto my-4\",\"children\":[\"$\",\"table\",null,{\"className\":\"w-full text-sm border rounded-lg overflow-hidden\",\"children\":[[\"$\",\"thead\",null,{\"children\":[\"$\",\"tr\",null,{\"style\":{\"background\":\"var(--bg-secondary)\"},\"children\":[[\"$\",\"th\",\"0\",{\"className\":\"text-left p-3 font-semibold border-b\",\"children\":\"Cause\"}],[\"$\",\"th\",\"1\",{\"className\":\"text-left p-3 font-semibold border-b\",\"children\":\"Fix\"}]]}]}],[\"$\",\"tbody\",null,{\"children\":[[\"$\",\"tr\",\"0\",{\"className\":\"border-b last:border-b-0\",\"children\":[[\"$\",\"td\",\"0\",{\"className\":\"p-3\",\"children\":\"Uncompressed images\"}],[\"$\",\"td\",\"1\",{\"className\":\"p-3\",\"children\":\"Use WebP format, compress to \u003c100KB\"}]]}],[\"$\",\"tr\",\"1\",{\"className\":\"border-b last:border-b-0\",\"children\":[[\"$\",\"td\",\"0\",{\"className\":\"p-3\",\"children\":\"Too much JavaScript\"}],[\"$\",\"td\",\"1\",{\"className\":\"p-3\",\"children\":\"Defer non-critical scripts\"}]]}],[\"$\",\"tr\",\"2\",{\"className\":\"border-b last:border-b-0\",\"children\":[[\"$\",\"td\",\"0\",{\"className\":\"p-3\",\"children\":\"No caching headers\"}],[\"$\",\"td\",\"1\",{\"className\":\"p-3\",\"children\":\"Add Cache-Control headers\"}]]}],[\"$\",\"tr\",\"3\",{\"className\":\"border-b last:border-b-0\",\"c"])</script><script>self.__next_f.push([1,"hildren\":[[\"$\",\"td\",\"0\",{\"className\":\"p-3\",\"children\":\"No CDN\"}],[\"$\",\"td\",\"1\",{\"className\":\"p-3\",\"children\":\"Use Cloudflare or Vercel Edge\"}]]}]]}]]}]}]\n3e:[\"$\",\"p\",\"39\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e 1-2 hours.\"}}]\n3f:[\"$\",\"h2\",\"40\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"7. You Have No Backlinks\"}]\n40:[\"$\",\"p\",\"41\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eThe problem:\u003c/strong\u003e Backlinks are votes of confidence from other websites. A site with zero backlinks struggles to rank for anything competitive.\"}}]\n41:[\"$\",\"p\",\"42\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to check:\u003c/strong\u003e Search \u003ccode style=\\\"background:var(--bg-hover);padding:1px 4px;border-radius:3px;font-size:0.85em\\\"\u003elink:yourdomain.com\u003c/code\u003e on Google, or run a backlink check in SEOBolt.\"}}]\n42:[\"$\",\"p\",\"43\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eHow to fix (starter backlinks):\u003c/strong\u003e\"}}]\n43:[\"$\",\"ol\",\"44\",{\"className\":\"space-y-2 my-4 pl-4 list-decimal list-inside\",\"children\":[[\"$\",\"li\",\"0\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Submit to directories: Product Hunt, AlternativeTo, G2\"}}]}],[\"$\",\"li\",\"1\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Write guest posts on relevant blogs\"}}]}],[\"$\",\"li\",\"2\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Create content worth linking to (original research, tools, templates)\"}}]}],[\"$\",\"li\",\"3\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"Reach out to sites that link to competitors but not you\"}}]}]]}]\n44:[\"$\",\"p\",\"45\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eTime to fix:\u003c/strong\u003e Ongoing — aim for 5-10 new backlinks per month.\"}}]\n45:[\"$\",\"h2\",\"46\",{\"className\":\"text-2xl font-bold mt-10 mb-4\",\"style\":{\"color\":\"var(--text-primary)\"},\"children\":\"How to Check All 7 at Once\"}]\n46:[\"$\",\"p\",\"47\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"Instead of checking each thing manually, run a site audit that checks everything:\"}}]\n"])</script><script>self.__next_f.push([1,"47:[\"$\",\"ol\",\"48\",{\"className\":\"space-y-2 my-4 pl-4 list-decimal list-inside\",\"children\":[[\"$\",\"li\",\"0\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eAdd your domain\u003c/strong\u003e to SEOBolt\"}}]}],[\"$\",\"li\",\"1\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eClick \\\"Start Audit\\\"\u003c/strong\u003e — crawls your site in 1-3 minutes\"}}]}],[\"$\",\"li\",\"2\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eSee your Action Plan\u003c/strong\u003e — issues grouped by priority (Critical → High → Medium → Low)\"}}]}],[\"$\",\"li\",\"3\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eFix the top items\u003c/strong\u003e — each one shows exactly how to fix it\"}}]}],[\"$\",\"li\",\"4\",{\"className\":\"text-sm leading-relaxed\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"$\",\"span\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong style=\\\"color:var(--text-primary)\\\"\u003eRe-crawl\u003c/strong\u003e — see your progress (Health Score: before → after)\"}}]}]]}]\n"])</script><script>self.__next_f.push([1,"48:[\"$\",\"p\",\"49\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"Most sites can fix the critical issues in under an hour. That single hour of work can be the difference between invisible and page 1.\"}}]\n49:[\"$\",\"p\",\"50\",{\"className\":\"text-sm leading-relaxed my-3\",\"style\":{\"color\":\"var(--text-secondary)\"},\"dangerouslySetInnerHTML\":{\"__html\":\"[Run your free site audit now](/register) — takes 2 minutes to see what's holding your site back.\"}}]\n4a:[\"$\",\"div\",null,{\"className\":\"mt-12 rounded-xl p-8 text-center\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\"},\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-bold mb-2\",\"children\":\"Ready to improve your SEO?\"}],[\"$\",\"p\",null,{\"className\":\"text-sm mb-6\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":\"Free plan available. 14+ SEO tools in one platform.\"}],[\"$\",\"div\",null,{\"className\":\"flex items-center justify-center gap-4\",\"children\":[[\"$\",\"$L16\",null,{\"href\":\"/register\",\"className\":\"px-6 py-3 rounded-lg font-medium text-sm text-white\",\"style\":{\"background\":\"var(--accent)\"},\"children\":\"Get Started Free\"}],[\"$\",\"$L16\",null,{\"href\":\"/pricing\",\"className\":\"px-6 py-3 rounded-lg font-medium text-sm border\",\"children\":\"View Pricing\"}]]}]]}]\n"])</script><script>self.__next_f.push([1,"4b:[\"$\",\"section\",null,{\"className\":\"py-12 px-6\",\"style\":{\"background\":\"var(--bg-secondary)\"},\"children\":[\"$\",\"div\",null,{\"className\":\"max-w-3xl mx-auto\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-6\",\"children\":\"Related Posts\"}],[\"$\",\"div\",null,{\"className\":\"grid gap-4\",\"children\":[[\"$\",\"$L16\",\"seo-audit-checklist-2026\",{\"href\":\"/blog/seo-audit-checklist-2026\",\"className\":\"flex items-center justify-between rounded-lg p-4 transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\"},\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"font-semibold text-sm\",\"children\":\"SEO Audit Checklist: The Only 12 Things That Actually Matter\"}],[\"$\",\"p\",null,{\"className\":\"text-xs mt-1\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"7 min\",\" read\"]}]]}],[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":16,\"height\":16,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-arrow-right\",\"aria-hidden\":\"true\",\"style\":{\"color\":\"var(--accent)\"},\"children\":[[\"$\",\"path\",\"1ays0h\",{\"d\":\"M5 12h14\"}],[\"$\",\"path\",\"xquz4c\",{\"d\":\"m12 5 7 7-7 7\"}],\"$undefined\"]}]]}],[\"$\",\"$L16\",\"what-keywords-am-i-ranking-for-free\",{\"href\":\"/blog/what-keywords-am-i-ranking-for-free\",\"className\":\"flex items-center justify-between rounded-lg p-4 transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\"},\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"font-semibold text-sm\",\"children\":\"What Keywords Am I Already Ranking For? (Without Paying for Ahrefs)\"}],[\"$\",\"p\",null,{\"className\":\"text-xs mt-1\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"6 min\",\" read\"]}]]}],[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":16,\"height\":16,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-arrow-right\",\"aria-hidden\":\"true\",\"style\":{\"color\":\"var(--accent)\"},\"children\":[[\"$\",\"path\",\"1ays0h\",{\"d\":\"M5 12h14\"}],[\"$\",\"path\",\"xquz4c\",{\"d\":\"m12 5 7 7-7 7\"}],\"$undefined\"]}]]}],[\"$\",\"$L16\",\"which-seo-issues-to-fix-first\",{\"href\":\"/blog/which-seo-issues-to-fix-first\",\"className\":\"flex items-center justify-between rounded-lg p-4 transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\"},\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"font-semibold text-sm\",\"children\":\"How to Know Which SEO Issues to Fix First\"}],[\"$\",\"p\",null,{\"className\":\"text-xs mt-1\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"5 min\",\" read\"]}]]}],[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":16,\"height\":16,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-arrow-right\",\"aria-hidden\":\"true\",\"style\":{\"color\":\"var(--accent)\"},\"children\":[[\"$\",\"path\",\"1ays0h\",{\"d\":\"M5 12h14\"}],[\"$\",\"path\",\"xquz4c\",{\"d\":\"m12 5 7 7-7 7\"}],\"$undefined\"]}]]}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"4c:[\"$\",\"footer\",null,{\"className\":\"border-t py-8 px-4 text-center\",\"style\":{\"borderColor\":\"var(--border)\",\"background\":\"var(--bg-secondary)\"},\"children\":[[\"$\",\"p\",null,{\"className\":\"text-xs mb-4\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":\"More from our team\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-wrap justify-center gap-2 max-w-3xl mx-auto\",\"children\":[[\"$\",\"a\",\"AutoShort\",{\"href\":\"https://autoshort.org?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"AI Video Generator\",\"children\":[[\"$\",\"span\",null,{\"children\":\"🎬\"}],[\"$\",\"span\",null,{\"children\":\"AutoShort\"}]]}],[\"$\",\"a\",\"BillsAI\",{\"href\":\"https://billsai.cc?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"Smart Finance Tracker\",\"children\":[[\"$\",\"span\",null,{\"children\":\"💰\"}],[\"$\",\"span\",null,{\"children\":\"BillsAI\"}]]}],[\"$\",\"a\",\"AiSend\",{\"href\":\"https://aisend.app?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"AI Email Platform\",\"children\":[[\"$\",\"span\",null,{\"children\":\"📧\"}],[\"$\",\"span\",null,{\"children\":\"AiSend\"}]]}],[\"$\",\"a\",\"BetterCV\",{\"href\":\"https://bettercv.app?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"AI Resume Builder\",\"children\":[[\"$\",\"span\",null,{\"children\":\"📄\"}],[\"$\",\"span\",null,{\"children\":\"BetterCV\"}]]}],[\"$\",\"a\",\"BetterKid\",{\"href\":\"https://betterkid.app?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"Kids Learning App\",\"children\":[[\"$\",\"span\",null,{\"children\":\"🧒\"}],[\"$\",\"span\",null,{\"children\":\"BetterKid\"}]]}],[\"$\",\"a\",\"AirdropFi\",{\"href\":\"https://airdropfi.xyz?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"Crypto Airdrop Tracker\",\"children\":[[\"$\",\"span\",null,{\"children\":\"🪂\"}],[\"$\",\"span\",null,{\"children\":\"AirdropFi\"}]]}],[\"$\",\"a\",\"Bugsly\",{\"href\":\"https://bugsly.dev?ref=seobolt.app\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs transition-colors\",\"style\":{\"background\":\"var(--bg-card)\",\"border\":\"1px solid var(--border)\",\"color\":\"var(--text-primary)\"},\"title\":\"Error Tracking\",\"children\":[[\"$\",\"span\",null,{\"children\":\"🐛\"}],[\"$\",\"span\",null,{\"children\":\"Bugsly\"}]]}]]}],[\"$\",\"p\",null,{\"className\":\"text-xs mt-4\",\"style\":{\"color\":\"var(--text-secondary)\"},\"children\":[\"Built by\",\" \",[\"$\",\"a\",null,{\"href\":\"https://github.com/kienpt91\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"style\":{\"color\":\"var(--accent)\"},\"children\":\"KienPhan\"}]]}]]}]\n"])</script><script>self.__next_f.push([1,"13:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"4d:I[351143,[\"/_next/static/chunks/e22d5eefb4093c8e.js\",\"/_next/static/chunks/9898951a8ea9b321.js\"],\"IconMark\"]\n11:null\n"])</script><script>self.__next_f.push([1,"15:[[\"$\",\"title\",\"0\",{\"children\":\"Why Is My Website Not Ranking on Google? 7 Things to Check — SEOBolt\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Your site is live but invisible on Google. Here are the 7 most common reasons — and how to fix each one in under an hour.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"keywords\",\"content\":\"seo tool,seo audit,ahrefs alternative,semrush alternative,self-hosted seo,rank tracker,backlink checker,keyword research,seo platform\"}],[\"$\",\"meta\",\"3\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"meta\",\"4\",{\"name\":\"googlebot\",\"content\":\"max-image-preview:large\"}],[\"$\",\"link\",\"5\",{\"rel\":\"canonical\",\"href\":\"https://seobolt.app/blog/why-website-not-ranking-google\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:title\",\"content\":\"Why Is My Website Not Ranking on Google? 7 Things to Check\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:description\",\"content\":\"Your site is live but invisible on Google. Here are the 7 most common reasons — and how to fix each one in under an hour.\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:type\",\"content\":\"article\"}],[\"$\",\"meta\",\"9\",{\"property\":\"article:published_time\",\"content\":\"2026-01-15\"}],[\"$\",\"meta\",\"10\",{\"property\":\"article:author\",\"content\":\"SEOBolt\"}],[\"$\",\"meta\",\"11\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:title\",\"content\":\"SEOBolt - Self-Hosted SEO Platform\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:description\",\"content\":\"Ahrefs alternative at 60% lower cost. Self-hosted, AI-native.\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:image\",\"content\":\"https://seobolt.app/opengraph-image\"}],[\"$\",\"link\",\"15\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.3099a6e0.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"16\",{\"rel\":\"icon\",\"href\":\"/icon.png?icon.66ee3e57.png\",\"sizes\":\"512x512\",\"type\":\"image/png\"}],[\"$\",\"link\",\"17\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?apple-icon.18efe99e.png\",\"sizes\":\"180x180\",\"type\":\"image/png\"}],[\"$\",\"$L4d\",\"18\",{}]]\n"])</script></body></html>