Introducing a sleek, modern, and open-source admin dashboard template built with the latest web technologies, including React + TypeScript + Vite and Next.js + TypeScript. Powered by shadcn/ui v3 and Tailwind CSS v4, this project offers a clean, responsive, and highly customizable UI. Developed and maintained by ShadcnStore, this free and open-source template is designed to accelerate your development process. Whether you're building an admin panel, SaaS dashboard, or launching an AI-driven product, this dashboard provides a beautiful, production-ready interface for your application β complete with a seamless dashboard and a fully-featured landing page to help you hit the ground running.
π Free & Open Source by ShadcnStore - Your gateway to premium UI components and templates.
π― View Live Demo | π§© Explore Premium Blocks
Experience the template in action:
- π₯οΈ Dashboard Demo - Complete admin dashboard with apps
- π Landing Page Demo - Beautiful marketing landing page
Note: This template includes both a complete dashboard (with mail, tasks, chat, calendar apps) and a marketing landing page in both Vite and Next.js versions.
π― Two Complete Templates:
- π₯οΈ Admin Dashboard - Modern, feature-rich dashboard with 30+ pages
- π Landing Page - Business-ready landing page template
β‘ Dual Framework Support:
- Vite - Lightning-fast development experience
- Next.js 15 - Production-ready with App Router
π¨ Live Theme Customization:
- tweakcn integration - Real-time theme editing
- Built-in customizer - Preview all possible combinations live
- Multiple layouts - Sidebar variants & collapsible options
- 2 Dashboard Variants - Overview & Analytics dashboards
- App Demos - Mail, Tasks, Chat, Calendar, Users applications
- 30+ Pages - Authentication, Settings, Errors, FAQ, Pricing
- Data Tables - Advanced tables with sorting, filtering, pagination
- Charts & Analytics - Recharts integration with beautiful visualizations
- Live Theme Customizer - Real-time color and layout switching
- tweakcn Integration - Professional theme management
- Multiple Layouts - Sidebar variants, collapsible navigation
- Responsive Design - Mobile-first approach with container queries
- Dark/Light Mode - Seamless theme switching
- Modern Tech Stack - React 19, TypeScript, Tailwind CSS v4
- Cross-Platform - Works with both Vite and Next.js
- Type Safety - Full TypeScript support throughout
- Component Library - Latest shadcn/ui v3 with Radix UI
- Easy Customization - Well-structured, modular codebase
π shadcn-dashboard/
βββ π vite-version/ # Vite + React version
β βββ π src/
β β βββ π app/ # Demo pages & applications
β β β βββ π dashboard/ # Dashboard variants
β β β βββ π dashboard-2/ # Alternative dashboard layout
β β β βββ π landing/ # Landing page template
β β β βββ π auth/ # Authentication pages
β β β βββ π mail/ # Email application demo
β β β βββ π tasks/ # Task management demo
β β β βββ π chat/ # Chat application demo
β β β βββ π calendar/ # Calendar demo
β β β βββ π settings/ # User settings pages
β β β βββ π errors/ # Error pages (404, 500, etc.)
β β β βββ π users/ # User management pages
β β β βββ π faqs/ # FAQ pages
β β β βββ π pricing/ # Pricing pages
β β βββ π components/ # UI components
β β β βββ π ui/ # shadcn/ui v3 components
β β β βββ π layouts/ # Layout components
β β β βββ π theme-customizer/ # Live theme editor
β β βββ π hooks/ # Custom React hooks
β β βββ π lib/ # Utilities & configurations
β β βββ π types/ # TypeScript type definitions
β βββ π package.json # Vite dependencies
β
βββ π nextjs-version/ # Next.js 15 version
β βββ π src/
β β βββ π app/ # App Router with route groups
β β β βββ π (auth)/ # Authentication route group
β β β β βββ π login/ # Login pages
β β β β βββ π signup/ # Registration pages
β β β β βββ π forgot-password/ # Password recovery
β β β β βββ π errors/ # Error pages (404, 500, etc.)
β β β βββ π (dashboard)/ # Dashboard route group
β β β β βββ π dashboard/ # Main dashboard
β β β β βββ π dashboard-2/ # Alternative dashboard
β β β β βββ π mail/ # Email application
β β β β βββ π tasks/ # Task management
β β β β βββ π chat/ # Chat application
β β β β βββ π calendar/ # Calendar demo
β β β β βββ π settings/ # User settings
β β β β βββ π users/ # User management
β β β β βββ π faqs/ # FAQ pages
β β β β βββ π pricing/ # Pricing pages
β β β β βββ π layout.tsx # Dashboard layout
β β β βββ π landing/ # Landing page template
β β β βββ π layout.tsx # Root layout
β β β βββ π loading.tsx # Global loading component
β β β βββ π not-found.tsx # 404 page
β β β βββ π page.tsx # Homepage
β β βββ π components/ # Same component structure as Vite
β β βββ π hooks/ # Custom React hooks
β β βββ π lib/ # Utilities & configurations
β β βββ π types/ # TypeScript type definitions
β βββ π package.json # Next.js dependencies
β
βββ π README.md # This file
βββ π LICENSE # MIT License
- Node.js 18+
- pnpm (recommended) or npm
git clone https://github.com/silicondeck/shadcn-dashboard-landing-template
cd shadcn-dashboardcd vite-version
pnpm install
pnpm devAccess at: http://localhost:5173
cd nextjs-version
pnpm install
pnpm devAccess at: http://localhost:3000
- Dashboard: Navigate to /dashboard or /dashboard-2
- Landing Page: Visit /landing for the business template
- Theme Customizer: Use the built-in customizer to preview themes live
- Apps: Explore Mail, Tasks, Chat, Calendar, Users
- Authentication: Check out Login, Signup, Forgot Password
- Settings: Visit Account, Appearance, Billing
pnpm dev # Start development server
pnpm build # Build for production
pnpm preview # Preview production build
pnpm lint # Run ESLintpnpm dev # Start development server
pnpm build # Build for production
pnpm start # Start production server
pnpm lint # Run Next.js linterThis template includes a powerful live theme customizer powered by tweakcn:
- Open the customizer - Click the theme customizer button
- Choose colors - Pick from preset themes or create custom palettes
- Layout options - Switch between sidebar variants and layouts
- Real-time preview - See changes instantly across all components
- Export themes - Save your custom themes for production use
- π Default - Clean blue theme
- π Dark - Professional dark theme
- πΈ Rose - Warm pink accents
- πΏ Green - Fresh green palette
- π Orange - Vibrant orange theme
- π΄ Red - Bold red accents
- π Violet - Modern purple theme
To add your own custom themes to the live customizer, create theme objects in your theme configuration:
// src/config/theme-data.ts (or similar file)
export const customTheme = {
name: "Custom Brand",
cssVars: {
light: {
primary: "210 100% 50%",
"primary-foreground": "0 0% 98%",
secondary: "210 100% 95%",
"secondary-foreground": "210 100% 20%",
accent: "210 100% 90%",
"accent-foreground": "210 100% 15%",
// Add more color variables as needed
},
dark: {
primary: "210 100% 60%",
"primary-foreground": "210 100% 15%",
// Dark mode variants
}
}
}To directly modify theme colors, update your CSS variables in globals.css or index.css:
:root {
--primary: oklch(0.5 0.2 240);
--primary-foreground: oklch(0.98 0.02 240);
--secondary: oklch(0.96 0.01 240);
--secondary-foreground: oklch(0.2 0.02 240);
/* Customize other variables */
}
.dark {
--primary: oklch(0.7 0.2 240);
--primary-foreground: oklch(0.15 0.02 240);
/* Dark mode variants */
}If you want to remove the theme customizer from your project:
- Remove the theme customizer component:
src/components/theme-customizer.tsx - Remove the theme customizer button from your layout
- Remove theme-related imports from your main layout file
- Delete the
src/components/theme-customizer/folder if it exists
- Remove the theme customizer component:
src/components/theme-customizer.tsx - Remove the theme customizer button from
src/app/layout.tsx - Remove theme-related imports from your layout files
- Delete the
src/components/theme-customizer/folder if it exists
π Learn More: For comprehensive theming documentation, visit the official shadcn/ui theming guide which covers CSS variables, color formats, and advanced customization techniques.
- React 19 - Latest React with concurrent features
- TypeScript - Full type safety
- Vite - Ultra-fast development
- Next.js 15 - Production-ready with App Router
- shadcn/ui v3 - Latest component library
- Radix UI - Accessible primitives
- Tailwind CSS v4 - Utility-first styling
- tweakcn - Advanced theme management
- Lucide React - Beautiful icons
- Zustand - Lightweight state management
- React Hook Form - Forms with validation
- Zod - Schema validation
- TanStack Table - Advanced data tables
- ESLint - Code linting
- Prettier - Code formatting
- TypeScript - Static type checking
- Dashboard - Overview with analytics cards and charts
- Dashboard v2 - Alternative dashboard with different metrics
- π§ Mail - Complete email interface (Inbox, Read, Compose)
- β Tasks - Task management with drag & drop
- π¬ Chat - Real-time chat interface
- π Calendar - Event scheduling and management
- π₯ Users - User management and profiles with advanced tables
- Login - 3 login page variants with different layouts
- Sign Up - 3 registration page variants with different designs
- Forgot Password - 3 password recovery page variants
- User Settings - Manage your personal information and preferences
- Account Settings - Profile management
- Plans & Billing - Subscription and payment pages
- Appearance - Theme and display preferences
- Notifications - Notification preferences
- Connections - Social media integrations
- 404 - Page not found
- 401 - Unauthorized access
- 403 - Forbidden
- 500 - Internal server error
- Under Maintenance - Maintenance mode page
- Hero Section - Compelling headlines and CTAs
- About Section - Company/product introduction with interactive elements
- Features Section - Product/service highlights with icons
- Stats Section - Key metrics and achievements display
- Logo Carousel - Partner/client logos showcase
- Team Section - Team member profiles and information
- Testimonials Section - Customer reviews and social proof
- Blog Section - Latest blog posts and articles
- Pricing Section - Pricing tables and plans
- FAQ Section - Frequently asked questions with expandable answers
- Contact Section - Contact forms and information
- CTA Section - Call-to-action components
- Navigation & Footer - Complete navigation and footer components
- Theme Customizer - Live theme switching for landing page
- FAQ - Frequently asked questions
- Pricing - Detailed pricing pages
- MIT Licensed - Use for personal and commercial projects
- No restrictions - Modify, distribute, and sell
- Community driven - Contributions welcome
- Production code - Clean, maintainable, and scalable
- Professional design - Modern UI that looks great
- Complete templates - Dashboard + Landing page included
- Live customization - See changes in real-time
- tweakcn integration - Professional theme management
- Multiple layouts - Sidebar variants and options
- Modern stack - Latest React, TypeScript, Tailwind CSS
- Great DX - Fast development with Vite
- Type safe - Full TypeScript coverage
- Well documented - Clear code and comments
This free template is just the beginning! ShadcnStore offers a complete ecosystem of free & premium UI components, dashboards and templates to accelerate your development:
- Premium Blocks - 150+ production-ready UI blocks
- Application Blocks - Advanced dashboard components
- Marketing Blocks - Landing page sections
- E-commerce Blocks - Online store components
- Free Blocks - No-cost starter components
- Premium Templates - Complete application templates
- Landing Page Collection - Business-ready landing pages
- Premium Dashboards - Advanced dashboard solutions
- SaaS Applications - Complete dashboard solutions
- Marketing Sites - Beautiful landing pages
- E-commerce - Online store interfaces
- Internal Tools - Admin panels and dashboards
π― Explore ShadcnStore - Premium blocks, dashboards and templates for modern web applications.
We welcome contributions! Here's how you can help:
- π Report bugs - Found an issue? Let us know!
- π‘ Suggest features - Have ideas for improvements?
- π§ Submit PRs - Fix bugs or add new features
- π Improve docs - Help make documentation better
- β Star the repo - Show your support!
- Fork the repository
- Create a feature branch:
git checkout -b my-feature - Make your changes and test thoroughly
- Commit:
git commit -m "Add new feature" - Push:
git push origin my-feature - Open a Pull Request
- Use TypeScript for all new code
- Follow ESLint and Prettier configurations
- Add type definitions for props and data
- Write clear commit messages
- Test your changes in both Vite and Next.js versions
This project is licensed under the MIT License - see the LICENSE file for details.
You are free to:
- β Use commercially
- β Modify and distribute
- β Include in private projects
- β Sell products built with this template
Attribution to ShadcnStore is appreciated but not required.
This template is built on the shoulders of amazing open-source projects:
- shadcn/ui - Beautiful and accessible components
- Radix UI - Low-level accessible primitives
- Tailwind CSS - Utility-first CSS framework
- Lucide Icons - Beautiful & consistent icons
- tweakcn - Advanced theme customization
- Recharts - Composable charting library
- TanStack Table - Powerful data tables
- π Documentation - This README covers everything
- π Issues - Report bugs
- π¬ Discussions - Join conversations
- π Website - ShadcnStore.com
- π¦ Twitter - @shadcnstore
- π¬ Discord - Join our server
- π§ Email - hello@shadcnstore.com
β Star this repo if it helped you!
A free & open-source template by ShadcnStore - Premium UI components, dashboards and templates for modern web development.


