<?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: Barira Sania</title>
    <description>The latest articles on DEV Community by Barira Sania (@barirabuilds).</description>
    <link>https://dev.to/barirabuilds</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4137090%2F87d3453e-4763-4305-ab7b-691596df58df.png</url>
      <title>DEV Community: Barira Sania</title>
      <link>https://dev.to/barirabuilds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/barirabuilds"/>
    <language>en</language>
    <item>
      <title>I Ran an SEO Audit on My Own Site — Here's Everything It Found (and Fixed)</title>
      <dc:creator>Barira Sania</dc:creator>
      <pubDate>Tue, 22 Sep 2026 07:38:59 +0000</pubDate>
      <link>https://dev.to/barirabuilds/i-ran-an-seo-audit-on-my-own-site-heres-everything-it-found-and-fixed-2dn</link>
      <guid>https://dev.to/barirabuilds/i-ran-an-seo-audit-on-my-own-site-heres-everything-it-found-and-fixed-2dn</guid>
      <description>&lt;p&gt;I built a free SEO audit tool, then turned it on my own website. It roasted me. Here's the full story — the issues, the fixes, and the code.&lt;/p&gt;

&lt;h2&gt;
  
  
  The setup
&lt;/h2&gt;

&lt;p&gt;My site: &lt;strong&gt;BeFirst&lt;/strong&gt; — a free SEO/AEO/GEO audit tool (&lt;a href="https://befirstseo.pages.dev" rel="noopener noreferrer"&gt;live here&lt;/a&gt;, &lt;a href="https://github.com/Barira7/BeFirst-Web" rel="noopener noreferrer"&gt;source on GitHub&lt;/a&gt;). Single-page site, no framework, plain HTML/CSS/JS. I figured a hand-written site would score well. It scored 84. Good, not great. The audit flagged real things.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the audit found
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Images with no lazy loading.&lt;/strong&gt;&lt;br&gt;
16 logo images in a marquee strip, all loading on first paint. None below the fold needed to block rendering. One-line fix per image:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"logo.svg"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"..."&lt;/span&gt; &lt;span class="na"&gt;loading=&lt;/span&gt;&lt;span class="s"&gt;"lazy"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Missing structured data.&lt;/strong&gt;&lt;br&gt;
No &lt;code&gt;SoftwareApplication&lt;/code&gt; or &lt;code&gt;Organization&lt;/code&gt; schema. Search engines (and AI answer engines) had to guess what the site is. Added JSON-LD:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@context"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://schema.org"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"SoftwareApplication"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"BeFirst"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"applicationCategory"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"SEO Tool"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"offers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Offer"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"price"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. FAQ with no FAQPage schema.&lt;/strong&gt;&lt;br&gt;
The page had a visible FAQ section — invisible to Google's rich results because there was no matching &lt;code&gt;FAQPage&lt;/code&gt; JSON-LD. Content was already written; the fix was markup only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Loose ends across pages.&lt;/strong&gt;&lt;br&gt;
Checked the pricing, privacy, and terms pages the same way — one H1 per page, sequential headings, meta descriptions. Boring work, but it's what separates an 84 from a 95+.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I deliberately did NOT fix
&lt;/h2&gt;

&lt;p&gt;The audit also flagged 19 &lt;code&gt;&amp;lt;button&amp;gt;&lt;/code&gt; elements and a single async analytics script as "too many interactive elements / external scripts." That's the product itself — removing buttons would remove functionality. Lesson: &lt;strong&gt;don't blindly obey audit tools, including mine.&lt;/strong&gt; Every flag needs a human decision: fix it, or keep it on purpose.&lt;/p&gt;

&lt;p&gt;Same with copy. The tool suggested rewriting headings for keywords. Rewriting working copy for a few keyword points risks the tone that converts. Left it alone.&lt;/p&gt;

&lt;h2&gt;
  
  
  The deploy loop
&lt;/h2&gt;

&lt;p&gt;Every fix goes: local edit → push to GitHub → live on Cloudflare Pages in under a minute. No build step, no bundler. For a static site, that loop is fast enough that there's no excuse to batch fixes — ship each one, re-audit, watch the score move.&lt;/p&gt;

&lt;h2&gt;
  
  
  Takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Audit your own site first.&lt;/strong&gt; If your tool can't fix your site, why would anyone trust it on theirs?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Schema markup is the highest-ROI boring work in SEO.&lt;/strong&gt; Ten minutes of JSON-LD, visible in every rich result forever.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;loading="lazy"&lt;/code&gt; is still free performance.&lt;/strong&gt; In 2026, audits still catch sites missing it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Not every flag is a fix.&lt;/strong&gt; Buttons that do things stay. Scripts that measure stay. Judgment over score.&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;em&gt;BeFirst is free while in beta — &lt;a href="https://befirstseo.pages.dev" rel="noopener noreferrer"&gt;audit your own site&lt;/a&gt; and see what it finds. If it roasts you too, the fixes above are a good start.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
    </item>
  </channel>
</rss>
