<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Amruth Pillai</title><description>Everyone needs their own little cozy corner on the interwebs, and this is mine.</description><link>https://amruthpillai.com/</link><item><title>Hello, world!</title><link>https://amruthpillai.com/blog/my-first-post/</link><guid isPermaLink="true">https://amruthpillai.com/blog/my-first-post/</guid><description>The first post of many to come. A quick intro to the new website, and why I rebuilt it from scratch.</description><pubDate>Fri, 01 May 2026 00:00:00 GMT</pubDate><content:encoded>import { Image } from &quot;astro:assets&quot;
import lighthouseScore from &quot;./lighthouse-score.png&quot;

It&apos;s spring, and that means, it&apos;s time for a website refresh. This has been a long time coming, but I never made the time to sit down and do the work to redesign and simplify my personal website.

Well, it&apos;s here now. Powered by Astro, this website goes back to a simpler time, when all that was shipped to the reader was a bunch of HTML and CSS, and maybe a tiny bit of Javascript. The whole point was to wind-down and simplify, and Astro let me do just that, so I can focus on content rather than performance-maxing.

This website also receives a Lighthouse score that&apos;s not too shabby, but of course, that&apos;s not a metric that should be taken too seriously. It&apos;s fast, that&apos;s all that matters.

&lt;Image
  src={lighthouseScore}
  alt=&quot;lighthouse score for amruthpillai.com&quot;
  widths={[576]}
  class=&quot;max-w-xl rounded-md object-cover&quot;
/&gt;

Astro even lets me write stylized code blocks and snippets, which is what I want to write about most of the time anyway.

```tsx line-numbers
const [count, setCount] = useState(0)

return (
  &lt;div&gt;
    &lt;p&gt;Count: {count}&lt;/p&gt;
    &lt;button onClick={() =&gt; setCount(count + 1)}&gt;Increment&lt;/button&gt;
  &lt;/div&gt;
)
```

As usual, the code for this website, like all my other projects, is open source and available on [GitHub](https://github.com/amruthpillai/amruthpillai). Licensed under [MIT](https://github.com/amruthpillai/amruthpillai/blob/main/LICENSE), so feel free to use it as a template for your own website.

I&apos;ll keep this post short, and end it here by thanking you for reading. If you have any feedback, please feel free to reach out to me on the [contact form](/#contact).</content:encoded></item></channel></rss>