<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: xuejiep-bit</title>
    <description>The latest articles on DEV Community by xuejiep-bit (@xuejiepbit).</description>
    <link>https://dev.to/xuejiepbit</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3857081%2F03dfb8e0-6f32-4438-98e0-624e785345c2.png</url>
      <title>DEV Community: xuejiep-bit</title>
      <link>https://dev.to/xuejiepbit</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xuejiepbit"/>
    <language>en</language>
    <item>
      <title>How I Went From Zero Code to 27-Page SEO Website Using Only AI and Free Tools</title>
      <dc:creator>xuejiep-bit</dc:creator>
      <pubDate>Thu, 02 Apr 2026 07:32:00 +0000</pubDate>
      <link>https://dev.to/xuejiepbit/how-i-went-from-zero-code-to-27-page-seo-website-using-only-ai-and-free-tools-43ij</link>
      <guid>https://dev.to/xuejiepbit/how-i-went-from-zero-code-to-27-page-seo-website-using-only-ai-and-free-tools-43ij</guid>
      <description>&lt;p&gt;I recently built &lt;a href="https://nuzlocketracker.xyz" rel="noopener noreferrer"&gt;nuzlocketracker.xyz&lt;/a&gt; — a free online tool for tracking Pokémon Nuzlocke challenge runs. The twist? I wrote zero lines of code myself. Every single line was generated with AI assistance (Claude).&lt;/p&gt;

&lt;p&gt;Here's what I learned about building, deploying, and getting a site indexed on Google — without any traditional coding skills.&lt;/p&gt;

&lt;p&gt;The Tech Stack (Stupidly Simple)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend: Plain HTML, CSS, JavaScript. No React, no frameworks.&lt;/li&gt;
&lt;li&gt;Hosting: GitHub Pages (free)&lt;/li&gt;
&lt;li&gt;DNS: Cloudflare (free tier)&lt;/li&gt;
&lt;li&gt;Domain:.xyz domain (~$2/year)&lt;/li&gt;
&lt;li&gt;Analytics: Google Analytics&lt;/li&gt;
&lt;li&gt;Indexing: Google Search Console + Bing Webmaster Tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Total monthly cost: $0&lt;/p&gt;

&lt;p&gt;What I Built&lt;/p&gt;

&lt;p&gt;27 static HTML pages, each targeting a specific long-tail keyword:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A main tracker tool with encounter logging&lt;/li&gt;
&lt;li&gt;Game-specific trackers (Emerald, FireRed, Platinum, Black, White, X, Y, Moon)&lt;/li&gt;
&lt;li&gt;Gym leader guides&lt;/li&gt;
&lt;li&gt;Tier list pages&lt;/li&gt;
&lt;li&gt;Blog articles answering common player questions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each page includes localStorage for data persistence, type weakness analysis, and pre-loaded route lists for each game.&lt;/p&gt;

&lt;p&gt;3 Painful Lessons About Google Indexing&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Cloudflare Pages + Googlebot = Redirect Hell&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;My site worked perfectly in every browser. But Google Search Console showed "redirect error" for 20 out of 21 pages.&lt;/p&gt;

&lt;p&gt;The problem: Cloudflare's proxy treats Googlebot differently from regular browsers. After weeks of debugging SSL settings, Bot Fight Mode, and DNS records, I gave up on Cloudflare Pages and switched to GitHub Pages.&lt;/p&gt;

&lt;p&gt;Fix: In Cloudflare DNS, set the CNAME record to "DNS only" (gray cloud, not orange). This bypasses the proxy entirely.&lt;/p&gt;

&lt;p&gt;Result: Google successfully crawled all pages within 24 hours.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The robots.txt That Wasn't Yours&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cloudflare has a hidden feature called "Managed robots.txt" that silently replaces your custom robots.txt. My Sitemap declaration was being stripped out for weeks.&lt;/p&gt;

&lt;p&gt;Fix: Cloudflare dashboard → AI Crawl Control → Turn off "Managed robots.txt"&lt;/p&gt;

&lt;p&gt;Always verify by visiting &lt;code&gt;yoursite.com/robots.txt&lt;/code&gt; in a browser.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Non-.com Domains Have Sitemap Bugs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google couldn't fetch my sitemap.xml from the root directory. Bing had no issues with the same file. Turns out .xyz (and .cc) domains have a known bug.&lt;/p&gt;

&lt;p&gt;Fix: Place a copy of sitemap.xml in a subdirectory: &lt;code&gt;/sitemap/sitemap.xml&lt;/code&gt; and submit that path in Search Console.&lt;/p&gt;

&lt;p&gt;Original Pixel Art Instead of Copyrighted Sprites&lt;/p&gt;

&lt;p&gt;Since the site will eventually run ads, I couldn't use official Pokémon sprites. Instead, I created an original pixel art decoration system (pixel-decorations.js) that adds:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Floating pixel star particles&lt;/li&gt;
&lt;li&gt;Pixel capture ball dividers between sections&lt;/li&gt;
&lt;li&gt;Auto-matched pixel icons on headings&lt;/li&gt;
&lt;li&gt;Pixel grass footer decoration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All SVG-based, all original, zero copyright risk.&lt;/p&gt;

&lt;p&gt;Current Results&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;5 pages indexed on Google (after 3 weeks of struggle)&lt;/li&gt;
&lt;li&gt;27 total pages live&lt;/li&gt;
&lt;li&gt;Both Google and Bing sitemaps successfully crawled&lt;/li&gt;
&lt;li&gt;~95 impressions for the main keyword&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Key Takeaways&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;GitHub Pages &amp;gt; Cloudflare Pages for Google indexing reliability&lt;/li&gt;
&lt;li&gt;Always check robots.txt in browser after deploying&lt;/li&gt;
&lt;li&gt;Sitemap in subdirectory** for non-.com domains&lt;/li&gt;
&lt;li&gt;One page = one keyword** for SEO&lt;/li&gt;
&lt;li&gt;AI can write the code, but can't debug your infrastructure— that took more time than building the site itself&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you're a non-developer thinking about building a website, it's absolutely doable with AI tools. Just be prepared to spend more time on deployment and SEO than on the actual code.&lt;/p&gt;




&lt;p&gt;What's your experience with Google indexing? Any horror stories? I'd love to hear them in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>seo</category>
      <category>github</category>
    </item>
  </channel>
</rss>
