Mon Apr 21 2025 00:00:00 GMT+0000 (Coordinated Universal Time)

What is this?

Is It Sunday? is a super simple app that tells you—yep—whether or not it’s Sunday.

It checks your local date and displays either Yes. or No.
If it is Sunday, you’ll get a celebratory confetti blast.


🛠️ How it works (Tech Details)

  • Built with Astro as the frontend framework for blazing fast static sites.
  • Uses a React component loaded via Astro’s client:load directive so it runs on page load.
  • Tailored with Tailwind CSS for a clean, minimal, modern UI with dumb fun at the heart.
  • A one-liner to check the day:
    const isSunday = new Date().getDay() === 0;