Our open-source shadcn dashboard just crossed 1,000+ GitHub stars ⭐️
▲ 6 r/shadcn

Our open-source shadcn dashboard just crossed 1,000+ GitHub stars ⭐️

Hey everyone 👋

A small milestone we wanted to share with the r/shadcn community:

Our open-source dashboard just crossed 1,000+ GitHub stars ⭐️

When we first open-sourced it, the goal was simple: create a useful starting point for developers building SaaS products, admin panels, and internal tools.

Since then, we've expanded it with complete app experiences including:

📧 Mail
✅ Tasks
💬 Chat
📅 Calendar
👥 Users

The project also includes:

  • shadcn/ui
  • React + Vite
  • Next.js
  • Tailwind CSS
  • TypeScript
  • Light/dark mode
  • Theme customization
  • Responsive layouts

We're genuinely grateful to everyone here who has starred it, tried it, shared it, or given feedback.

1,000+ stars is a pretty cool milestone for an open-source project ❤️

ShadcnStore celebrates reaching 1,000+ GitHub stars for its open-source shadcn dashboard. The banner features a laptop displaying the dashboard with analytics, calendar, tasks, messages and activity panels, along with the project’s GitHub repository and technology highlights including shadcn/ui, Next.js, TypeScript, responsive design, light/dark mode and customization.

If you've used the template, we'd love to hear:

What should we improve or add next?

GitHub: https://github.com/shadcnstore/shadcn-dashboard-landing-template

reddit.com
u/Then_Abbreviations77 — 2 days ago
▲ 9 r/shadcn

We added real apps to our open-source shadcn dashboard - Mail & Tasks

We've been working on our open-source shadcn dashboard, and we've been adding more than just dashboard pages.

We now have actual application interfaces you can use as starting points for your own projects.

For this update, we wanted to show two of them:

📧 Mail

  • Inbox and email management
  • Reading and compose experience
  • Dashboard-style navigation

Tasks

  • Task management
  • Status and priority
  • Categories and filtering
  • Table interactions

The dashboard also supports:

  • Light / dark mode
  • Theme color customization
  • Layout customization
  • React + Vite
  • Next.js
  • Tailwind CSS v4
  • shadcn/ui

Here's a short video showing both apps and the customization options.

Try them live

📧 Mail: https://shadcnstore.github.io/shadcn-dashboard-landing-template/mail

✅ Tasks: https://shadcnstore.github.io/shadcn-dashboard-landing-template/tasks

Source

https://github.com/shadcnstore/shadcn-dashboard-landing-template

We're continuing to build this out and would genuinely love feedback from the shadcn community.

What would you add to these apps?

u/Then_Abbreviations77 — 7 days ago
▲ 6 r/shadcn

ShadcnStore v3.0.0 - migrated the catalogue to Base UI and changed how blocks are installed

Title: ShadcnStore v3.0.0 - migrated our catalogue to Base UI and made larger blocks multi-file

We’ve just released ShadcnStore v3.0.0 🚀

The biggest change is our catalogue-wide migration from Radix to Base UI.

But the part we’re most excited about is how larger blocks are now delivered.

Previously, some larger blocks could arrive as one big component file. That works for getting started, but becomes harder to navigate when you want to customize a specific section, interaction, or piece of state.

So we changed the registry output.

Now, when you run:

npx shadcn add product-overview-3

larger blocks are installed as named, multi-file components - the same structure we maintain internally.

The goal is simple:

Install → understand → customize → ship

We also:

  • Migrated the underlying primitives from Radix to Base UI
  • Rewrote Base UI component docs, demos, and composition examples
  • Added migration guidance for existing Radix-based implementations
  • Fixed responsive issues across the catalogue
  • Fixed various interaction, chart, datatable, and pagination issues
  • Improved catalogue data/counts

Existing code you've already copied isn't affected. The new structure and Base UI primitives apply to new installs.

We'd love to hear what you think about the new multi-file structure, especially for larger shadcn-style blocks.

Full changelog: https://shadcnstore.com/changelog

u/Then_Abbreviations77 — 9 days ago

We migrated a catalogue of shadcn-style blocks from Radix to Base UI - the useful change was making installs multi-file

We recently finished migrating our block catalogue and its underlying primitives from Radix to Base UI.

The migration itself was only part of the work. The more interesting outcome was changing how the blocks are delivered to developers.

Large blocks used to arrive as one oversized component file. That's convenient for the initial copy/paste, but it becomes painful when you need to change one section, replace an interaction, or figure out where a particular piece of state is coming from.

So we changed the structure.

Larger blocks are now split into named, focused files, and we've changed the registry so:

npx shadcn add

installs the same multi-file structure that we maintain internally.

The goal was to make the installed result feel more like normal project code and less like a generated blob:

find the piece → understand it → change it → move on.

We also rewrote the component documentation, demos, and composition examples around Base UI, and added migration guidance for codebases coming from Radix.

Existing code that was already copied into projects is unaffected. The new structure and Base UI primitives apply to new installs.

One lesson I'd carry into another migration: define the output structure before converting the components.

It's much easier to review a migration when the source code, docs, demos, and installed artifacts are all telling the same structural story.

Curious how others here approach large-scale component migrations, especially when the components are copied into the consumer's codebase rather than installed as a traditional package.

reddit.com
u/Then_Abbreviations77 — 10 days ago

Nature hitting the refresh button 🌧️

The kind of weather that makes you want to pause for a moment and just enjoy the view!! ☁️💚

u/Then_Abbreviations77 — 20 days ago

Looks like Gandhinagar is about to get a good shower 🌧️

The sky turned dramatic today. It definitely feels like rain is just minutes away.

Anyone else enjoying this weather? 🌿

u/Then_Abbreviations77 — 21 days ago

We added a file-tree preview to our shadcn block library - does this make evaluating blocks easier?

While working on our shadcn block library, one thing always bothered us: a flat code preview doesn't really tell you how a block is structured.

We ended up replacing it with a file-tree preview, so before installing a block you can see:

  • which files are included
  • how they're organized
  • whether it's a simple component or a larger composition

It feels much closer to browsing a GitHub repository than scrolling through one long code snippet.

We also improved our component docs and customizer in the same release, but the file-tree preview is the part I'm most interested in getting feedback on.

For those who use shadcn/ui or component libraries:

Would seeing the file structure before installation help you evaluate a block, or is a code preview enough?

Changelog: https://shadcnstore.com/changelog

u/Then_Abbreviations77 — 22 days ago
▲ 31 r/shadcn+1 crossposts

ShadcnStore 2.1.0: Block Preview Code Tree, improved docs, AI chat primitives & Figma updates

Hey everyone! 👋

We just shipped ShadcnStore 2.1.0, and I wanted to share a few things we've been working on.

The biggest addition is the Block Preview Code Tree

Instead of a single code panel, you can now explore a block's complete file structure before installing it. It makes it much easier to understand how a block is organised and what's included.

Other updates in this release:

🌳 Block Preview Code Tree

  • Browse the complete file structure before installation
  • Replaces the old copy-code workflow

🎨 Rebuilt Block Customizer

  • New color palette picker
  • Better workflow built around the new Code Tree

📚 Component Documentation

We now have dedicated documentation for 58 shadcn/ui components, including:

  • Interactive demos
  • Installation & usage guides
  • Accessibility notes
  • FAQs
  • Base UI → Radix migration guide

🤖 AI Chat Primitives

We've also documented:

  • Marker
  • Message
  • Message Scroller

More AI blocks are on the way!

🎨 Figma Updates

  • New e-commerce blocks
  • Reusable components
  • Required icons
  • Switchable icon support
  • Dedicated color variables

We also fixed a number of accessibility and UI issues, including keyboard focus outlines, overlay animations, chart rendering, and layout consistency.

Would love to hear any feedback or suggestions from the community.

Changelog: https://shadcnstore.com/changelog

u/Then_Abbreviations77 — 21 days ago
▲ 8 r/shadcn+1 crossposts

We crossed 750+ stars on our open-source shadcn dashboard template 🚀

A few months ago we started building a shadcn/ui dashboard + landing page template because we wanted something modern, customizable, and actually production-ready.

Today it crossed 750+ GitHub stars 🌟

Really grateful for all the support, feedback, issues, PRs, and shares from the OSS community.

Tech stack:

  • Next.js 15
  • React
  • Tailwind CSS
  • TypeScript
  • shadcn/ui

If you’re building a SaaS, admin panel, or startup landing page, would love to hear your thoughts.

Repo: Shadcn Open-source Admin Dashboard

u/Then_Abbreviations77 — 3 months ago