<?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: Pariwar Sewa</title>
    <description>The latest articles on DEV Community by Pariwar Sewa (@pariwarsewa4).</description>
    <link>https://dev.to/pariwarsewa4</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%2F4133145%2F1147ea47-ca9a-4837-b45b-c2a7c75a8f81.png</url>
      <title>DEV Community: Pariwar Sewa</title>
      <link>https://dev.to/pariwarsewa4</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pariwarsewa4"/>
    <language>en</language>
    <item>
      <title>A Practical Checklist for Shipping Small-Business Websites That Actually Get Found</title>
      <dc:creator>Pariwar Sewa</dc:creator>
      <pubDate>Sat, 19 Sep 2026 16:29:25 +0000</pubDate>
      <link>https://dev.to/pariwarsewa4/a-practical-checklist-for-shipping-small-business-websites-that-actually-get-found-160d</link>
      <guid>https://dev.to/pariwarsewa4/a-practical-checklist-for-shipping-small-business-websites-that-actually-get-found-160d</guid>
      <description>&lt;p&gt;Local-business sites tend to fail in predictable ways. Here's the checklist I run before handing one over.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Performance
&lt;/h2&gt;

&lt;p&gt;Images: serve WebP/AVIF, set explicit width and height, lazy-load below the fold.&lt;br&gt;
Aim for LCP under 2.5s on a throttled mobile profile. Test with Lighthouse in mobile mode, not just desktop.&lt;br&gt;
Watch third-party scripts (chat widgets, analytics, fonts). They're the usual culprit.&lt;br&gt;
&lt;code&gt;&lt;br&gt;
&amp;lt;img src="https://dev-to-uploads.s3.us-east-2.amazonaws.com/uploads/articles/tirhlv5mwdug9x8mww56.png" width="1200" height="630" alt="Team installing a waterproofing membrane" fetchpriority="high"&amp;gt;&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fth8l9pdijzg2onw987xt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fth8l9pdijzg2onw987xt.png" alt="Hero Image" width="800" height="350"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  2. Semantic HTML
&lt;/h2&gt;

&lt;p&gt;One &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; per page, sensible heading order, &lt;code&gt;&amp;lt;nav&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;main&amp;gt;&lt;/code&gt; , &lt;code&gt;&amp;lt;footer&amp;gt;&lt;/code&gt;. It helps accessibility and search engines alike.&lt;/p&gt;
&lt;h2&gt;
  
  
  3. Local structured data
&lt;/h2&gt;

&lt;p&gt;For service businesses, add LocalBusiness JSON-LD with name, address, phone, opening hours and service area.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "Example Services",
  "telephone": "+977-XXXXXXXXXX",
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "Kathmandu",
    "addressCountry": "NP"
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Keep this consistent with what's on the visible page and on the business's Google Business Profile.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Metadata
&lt;/h2&gt;

&lt;p&gt;Unique &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; and meta description per page, canonical tags, and Open Graph tags so links shared on WhatsApp and Facebook look decent.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Mobile UX
&lt;/h2&gt;

&lt;p&gt;Tap-to-call and WhatsApp links (&lt;code&gt;tel:&lt;/code&gt; and &lt;code&gt;https://wa.me/...&lt;/code&gt;) in a visible place. Tap targets around 44px. Readable font sizes.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Handover
&lt;/h2&gt;

&lt;p&gt;Set up Search Console and submit the sitemap.&lt;br&gt;
Leave a short doc on how to update content.&lt;br&gt;
Agree on who renews the domain and hosting.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. What clients usually forget
&lt;/h2&gt;

&lt;p&gt;Their own contact details in three places disagreeing. Check that phone number and address are identical across the site, schema and Google profile.&lt;/p&gt;

&lt;p&gt;That's the list. I'd love to hear what's on yours.&lt;/p&gt;

&lt;p&gt;I write about this at &lt;em&gt;&lt;a href="https://pariwar-engineering.com.np" rel="noopener noreferrer"&gt;Pariwar Sewa&lt;/a&gt;&lt;/em&gt;, where we build and maintain small-business sites in Nepal.&lt;/p&gt;

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