<?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: Axoryte</title>
    <description>The latest articles on DEV Community by Axoryte (@axoryteinfosoft).</description>
    <link>https://dev.to/axoryteinfosoft</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%2F3954090%2F4e6b1c35-74b5-493c-86c5-a7e1bb6f4c4c.gif</url>
      <title>DEV Community: Axoryte</title>
      <link>https://dev.to/axoryteinfosoft</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/axoryteinfosoft"/>
    <language>en</language>
    <item>
      <title>We rebuilt our client's old PHP site in Next.js — here's what happened to their traffic</title>
      <dc:creator>Axoryte</dc:creator>
      <pubDate>Wed, 27 May 2026 10:04:21 +0000</pubDate>
      <link>https://dev.to/axoryteinfosoft/we-rebuilt-our-clients-old-php-site-in-nextjs-heres-what-happened-to-their-traffic-2elk</link>
      <guid>https://dev.to/axoryteinfosoft/we-rebuilt-our-clients-old-php-site-in-nextjs-heres-what-happened-to-their-traffic-2elk</guid>
      <description>&lt;p&gt;A few months ago, one of our clients came to us with a problem. Their &lt;br&gt;
website was built in 2018 on a custom PHP stack. It was slow (4+ second &lt;br&gt;
load time), not mobile-friendly, and their bounce rate was sitting around 78%.&lt;/p&gt;

&lt;p&gt;They weren't getting leads from the site. People were just leaving.&lt;/p&gt;

&lt;p&gt;We're Axoryte Infosoft — a software development team based in India. &lt;br&gt;
We work with startups and businesses across the US and UK. This particular &lt;br&gt;
client runs a B2B services company in Canada.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Did
&lt;/h2&gt;

&lt;p&gt;We rebuilt their entire site in &lt;strong&gt;Next.js 14&lt;/strong&gt; with the App Router. &lt;br&gt;
Here's the stack we used:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Framework:&lt;/strong&gt; Next.js 14 (App Router)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling:&lt;/strong&gt; Tailwind CSS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CMS:&lt;/strong&gt; Sanity.io&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hosting:&lt;/strong&gt; Vercel&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Analytics:&lt;/strong&gt; Google Analytics 4 + Vercel Analytics&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The old site had no image optimization, no lazy loading, and was serving &lt;br&gt;
everything from a single shared hosting server.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Results (After 8 Weeks)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;Before&lt;/th&gt;
&lt;th&gt;After&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Page Load Time&lt;/td&gt;
&lt;td&gt;4.2s&lt;/td&gt;
&lt;td&gt;0.9s&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Google PageSpeed Score&lt;/td&gt;
&lt;td&gt;34&lt;/td&gt;
&lt;td&gt;94&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bounce Rate&lt;/td&gt;
&lt;td&gt;78%&lt;/td&gt;
&lt;td&gt;41%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Monthly Leads&lt;/td&gt;
&lt;td&gt;3–4&lt;/td&gt;
&lt;td&gt;18–22&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The client was genuinely surprised. They said they'd been told their &lt;br&gt;
old site was "fine" for years.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Lessons
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Server-side rendering matters for SEO.&lt;/strong&gt;&lt;br&gt;
The old site was fully client-rendered. Google was indexing blank pages. &lt;br&gt;
With Next.js SSR, all pages are fully rendered HTML — Google loves it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Image optimization alone can cut 60% of load time.&lt;/strong&gt;&lt;br&gt;
We switched all images to Next.js &lt;code&gt;&amp;lt;Image&amp;gt;&lt;/code&gt; with AVIF format. &lt;br&gt;
That one change reduced page weight by 1.8MB.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Core Web Vitals are not optional anymore.&lt;/strong&gt;&lt;br&gt;
Google now uses LCP, FID, and CLS as ranking factors. You can't ignore them.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Learned
&lt;/h2&gt;

&lt;p&gt;Rebuilding a site is never just "a new design." It's a chance to fix &lt;br&gt;
architecture mistakes, improve performance, and set the client up for &lt;br&gt;
the next 5 years.&lt;/p&gt;

&lt;p&gt;If you're working on something similar or want to talk about a project, &lt;br&gt;
feel free to reach out through &lt;a href="https://axoryteinfosoft.com" rel="noopener noreferrer"&gt;axoryteinfosoft.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;We're always happy to discuss ideas — no sales pitch, just an honest conversation.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
