<?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: Deshan Nethmina</title>
    <description>The latest articles on DEV Community by Deshan Nethmina (@deshan_nethmina_d484cd827).</description>
    <link>https://dev.to/deshan_nethmina_d484cd827</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%2F4076221%2Fff3006e7-e87f-40c3-98d3-8a29a28cf2cd.png</url>
      <title>DEV Community: Deshan Nethmina</title>
      <link>https://dev.to/deshan_nethmina_d484cd827</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/deshan_nethmina_d484cd827"/>
    <language>en</language>
    <item>
      <title>How I Built a Production-Ready HR Management Dashboard (React, Vite &amp; Supabase)</title>
      <dc:creator>Deshan Nethmina</dc:creator>
      <pubDate>Thu, 13 Aug 2026 11:45:21 +0000</pubDate>
      <link>https://dev.to/deshan_nethmina_d484cd827/how-i-built-a-production-ready-hr-management-dashboard-react-vite-supabase-4kh2</link>
      <guid>https://dev.to/deshan_nethmina_d484cd827/how-i-built-a-production-ready-hr-management-dashboard-react-vite-supabase-4kh2</guid>
      <description>&lt;p&gt;Building a comprehensive Internal HR Management System from scratch is no small feat. Recently, I set out to build a fully functional, highly responsive HR dashboard that can handle real-world agency requirements. &lt;/p&gt;

&lt;p&gt;In this post, I want to share the tech stack I chose, the features I implemented, and how these tools made the development process incredibly smooth.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ The Tech Stack
&lt;/h2&gt;

&lt;p&gt;To ensure the system is fast, scalable, and easy to maintain, I went with a very modern stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Frontend Framework:&lt;/strong&gt; React 18 powered by Vite. (Vite’s HMR and build speeds are an absolute game-changer compared to Create React App).&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Language:&lt;/strong&gt; TypeScript to maintain a strictly typed, bug-free codebase.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Backend &amp;amp; Database:&lt;/strong&gt; Supabase. It provided out-of-the-box authentication, Row Level Security (RLS), and a robust PostgreSQL database without the hassle of setting up a custom backend.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Styling:&lt;/strong&gt; Tailwind CSS (v3.4) for rapid, highly customizable UI design.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Data Visualization:&lt;/strong&gt; Recharts for building interactive, clean charts on the overview dashboard.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Animations &amp;amp; Icons:&lt;/strong&gt; Framer Motion for smooth transitions and Lucide React for consistent iconography.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ✨ Key Features of the System
&lt;/h2&gt;

&lt;p&gt;I wanted the dashboard to cover the most critical operations for any digital agency or tech startup. &lt;/p&gt;

&lt;h3&gt;
  
  
  1. Centralized Dashboard Analytics
&lt;/h3&gt;

&lt;p&gt;The main view provides a company-wide overview. From total headcount and daily attendance rates to open positions and leave distributions. I used Recharts to visualize the attendance trends over the last 10 working days seamlessly.&lt;/p&gt;

&lt;p&gt;*&lt;br&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%2Fqtbsrjo36ntq8nuk9w95.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%2Fqtbsrjo36ntq8nuk9w95.png" alt=" " width="800" height="658"&gt;&lt;/a&gt;*&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Employee &amp;amp; Department Management
&lt;/h3&gt;

&lt;p&gt;Managing roles, statuses (Probation/Permanent), and departmental budgets all in one place. The UI is built to filter through employees instantly.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;[Insert a screenshot of the Employees/Departments page here]&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Advanced Leave &amp;amp; Attendance Tracking
&lt;/h3&gt;

&lt;p&gt;Tracking clock-in/out times, remote work (WFH) statuses, and handling leave approvals. Setting up the database schema in Supabase for relational data between employees, shifts, and leave logs was surprisingly intuitive.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;[Insert a screenshot of the Leave Management page here]&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Key Takeaways
&lt;/h2&gt;

&lt;p&gt;Using Supabase alongside React completely shifted how I approach full-stack development. Not having to write boilerplate CRUD APIs saved me dozens of hours. Paired with Tailwind and Vite, the developer experience was incredibly fast.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Get the Source Code
&lt;/h2&gt;

&lt;p&gt;If you are an agency owner, a freelancer, or a developer looking to build an internal tool without starting from scratch, I’ve decided to make the complete, production-ready source code available. &lt;/p&gt;

&lt;p&gt;You can grab the full codebase, complete with setup instructions, and launch your own system today:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://deshaneth.gumroad.com/l/employee-management-system-cyan-three-73vercelapp" rel="noopener noreferrer"&gt;https://deshaneth.gumroad.com/l/employee-management-system-cyan-three-73vercelapp&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let me know in the comments if you have any questions about the architecture or the stack. Happy coding!Building a comprehensive Internal HR Management System from scratch is no small feat. Recently, I set out to build a fully functional, highly responsive HR dashboard that can handle real-world agency requirements. &lt;/p&gt;

&lt;p&gt;In this post, I want to share the tech stack I chose, the features I implemented, and how these tools made the development process incredibly smooth.&lt;/p&gt;

&lt;p&gt;🛠️ The Tech Stack&lt;/p&gt;

&lt;p&gt;To ensure the system is fast, scalable, and easy to maintain, I went with a very modern stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend Framework: React 18 powered by Vite. (Vite’s HMR and build speeds are an absolute game-changer compared to Create React App).&lt;/li&gt;
&lt;li&gt;Language: TypeScript to maintain a strictly typed, bug-free codebase.&lt;/li&gt;
&lt;li&gt;Backend &amp;amp; Database: Supabase. It provided out-of-the-box authentication, Row Level Security (RLS), and a robust PostgreSQL database without the hassle of setting up a custom backend.&lt;/li&gt;
&lt;li&gt;Styling: Tailwind CSS (v3.4) for rapid, highly customizable UI design.&lt;/li&gt;
&lt;li&gt;Data Visualization: Recharts for building interactive, clean charts on the overview dashboard.&lt;/li&gt;
&lt;li&gt;Animations &amp;amp; Icons: Framer Motion for smooth transitions and Lucide React for consistent iconography.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;✨ Key Features of the System&lt;/p&gt;

&lt;p&gt;I wanted the dashboard to cover the most critical operations for any digital agency or tech startup. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Centralized Dashboard Analytics
The main view provides a company-wide overview. From total headcount and daily attendance rates to open positions and leave distributions. I used Recharts to visualize the attendance trends over the last 10 working days seamlessly.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;[Insert a screenshot of your main dashboard here]&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Employee &amp;amp; Department Management
Managing roles, statuses (Probation/Permanent), and departmental budgets all in one place. The UI is built to filter through employees instantly.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;[Insert a screenshot of the Employees/Departments page here]&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Advanced Leave &amp;amp; Attendance Tracking
Tracking clock-in/out times, remote work (WFH) statuses, and handling leave approvals. Setting up the database schema in Supabase for relational data between employees, shifts, and leave logs was surprisingly intuitive.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;[Insert a screenshot of the Leave Management page here]&lt;/p&gt;

&lt;p&gt;💡 Key Takeaways&lt;/p&gt;

&lt;p&gt;Using Supabase alongside React completely shifted how I approach full-stack development. Not having to write boilerplate CRUD APIs saved me dozens of hours. Paired with Tailwind and Vite, the developer experience was incredibly fast.&lt;/p&gt;

&lt;p&gt;🚀 Get the Source Code&lt;/p&gt;

&lt;p&gt;If you are an agency owner, a freelancer, or a developer looking to build an internal tool without starting from scratch, I’ve decided to make the complete, production-ready source code available. &lt;/p&gt;

&lt;p&gt;You can grab the full codebase, complete with setup instructions, and launch your own system today:&lt;/p&gt;

&lt;p&gt;👉 Get the Full Source Code Here: [Insert_Your_Gumroad_Link_Here]&lt;/p&gt;

&lt;p&gt;Let me know in the comments if you have any questions about the architecture or the stack. Happy coding!&lt;/p&gt;

</description>
      <category>react</category>
      <category>webdev</category>
      <category>typescript</category>
      <category>database</category>
    </item>
  </channel>
</rss>
