<?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: Pulkit</title>
    <description>The latest articles on DEV Community by Pulkit (@pulkit_dev).</description>
    <link>https://dev.to/pulkit_dev</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%2F3763269%2Ff767a8c8-4b42-4f3b-b9e6-46350b0b6ae1.png</url>
      <title>DEV Community: Pulkit</title>
      <link>https://dev.to/pulkit_dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pulkit_dev"/>
    <language>en</language>
    <item>
      <title>I built a Dark Mode Holiday Calendar with Next.js because TimeAndDate was too cluttered</title>
      <dc:creator>Pulkit</dc:creator>
      <pubDate>Tue, 10 Feb 2026 04:40:27 +0000</pubDate>
      <link>https://dev.to/pulkit_dev/i-built-a-dark-mode-holiday-calendar-with-nextjs-because-timeanddate-was-too-cluttered-41dg</link>
      <guid>https://dev.to/pulkit_dev/i-built-a-dark-mode-holiday-calendar-with-nextjs-because-timeanddate-was-too-cluttered-41dg</guid>
      <description>&lt;h1&gt;
  
  
  Building a Clean, Ad-Free Holidays Calendar (Because the Internet Needed One)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  The Problem That Started It All
&lt;/h2&gt;

&lt;p&gt;Picture this: It's late 2025, and I'm trying to plan my time off for 2026. Simple task, right? Just look up the bank holidays and mark my calendar.&lt;/p&gt;

&lt;p&gt;Except it wasn't simple at all.&lt;/p&gt;

&lt;p&gt;Every website I visited was a minefield of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Aggressive pop-up ads&lt;/li&gt;
&lt;li&gt;Auto-playing videos&lt;/li&gt;
&lt;li&gt;Newsletter signup modals&lt;/li&gt;
&lt;li&gt;Cluttered layouts that made finding actual dates feel like a treasure hunt&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I literally just needed a list of dates. That's it. No fluff, no fuss, no "Sign up for our premium calendar experience!"&lt;/p&gt;

&lt;h2&gt;
  
  
  Sometimes You Just Have to Build It Yourself
&lt;/h2&gt;

&lt;p&gt;After closing my tenth ad popup, I had that moment every developer knows well: "I could build this better in an afternoon."&lt;/p&gt;

&lt;p&gt;So I did. Meet &lt;a href="https://HolidaysCalendar.net" rel="noopener noreferrer"&gt;HolidaysCalendar.net&lt;/a&gt; — a straightforward, clean holidays calendar that respects your time and your eyeballs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Tech Stack (Keeping It Simple)
&lt;/h2&gt;

&lt;p&gt;I didn't need anything fancy here. The goal was speed and simplicity:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js&lt;/strong&gt;: Perfect for static site generation. The pages load instantly because they're pre-rendered.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt;: Made implementing the dark mode incredibly smooth (more on that in a second).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom JSON datasets&lt;/strong&gt;: Clean, structured data for US and UK holidays. No external API calls, no loading spinners.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What Makes It Different
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🚫 Zero Ads
&lt;/h3&gt;

&lt;p&gt;This one's non-negotiable. The whole point was escaping ad hell, so there are none. Not now, not ever.&lt;/p&gt;

&lt;h3&gt;
  
  
  🌙 Native Dark Mode
&lt;/h3&gt;

&lt;p&gt;I'm a dark mode enthusiast, so this was a must-have. Using Tailwind's dark mode utilities, I built a theme that's easy on the eyes whether you're planning vacation days at midnight or during your lunch break.&lt;/p&gt;

&lt;p&gt;The implementation is native to the system preferences — if your device is in dark mode, the site follows automatically. No toggle needed (though I might add one later for the rebels who want light mode at 2 AM).&lt;/p&gt;

&lt;h3&gt;
  
  
  ⚡ 100/100 Lighthouse Score
&lt;/h3&gt;

&lt;p&gt;I'm pretty proud of this one. The site scores perfect 100s across the board:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Performance&lt;/li&gt;
&lt;li&gt;Accessibility&lt;/li&gt;
&lt;li&gt;Best Practices&lt;/li&gt;
&lt;li&gt;SEO&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It loads fast, it's accessible, and it does exactly what it says on the tin.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I'm Sharing This
&lt;/h2&gt;

&lt;p&gt;Honestly? Because I think we need more of this on the internet.&lt;/p&gt;

&lt;p&gt;Not every website needs to be monetized to death. Sometimes a tool is just a tool — something useful you build because it solves a real problem you (and probably others) have.&lt;/p&gt;

&lt;p&gt;If you've ever rage-closed a tab because you couldn't find simple information through the ad chaos, this site is for you.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;Right now, it covers US and UK bank holidays. I'm thinking about adding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More countries&lt;/li&gt;
&lt;li&gt;iCal export functionality&lt;/li&gt;
&lt;li&gt;A simple way to download the dates for your planning tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But I'm keeping it lean. The whole point is simplicity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;Head over to &lt;a href="https://HolidaysCalendar.net" rel="noopener noreferrer"&gt;HolidaysCalendar.net&lt;/a&gt; and let me know what you think — especially about the dark mode! I'd love feedback from fellow developers and regular users alike.&lt;/p&gt;

&lt;p&gt;And if you're planning your 2026 PTO right now, you're welcome. 😊&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Have thoughts on the dark mode implementation or ideas for features? I'm all ears. This is built for real people with real planning needs — your feedback makes it better.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
