agentlytics
Comprehensive analytics dashboard for AI coding agents — Cursor, Windsurf, Claude Code, VS Code Copilot, Zed, Antigravi…
Accelerate your development with a sleek, open-source admin dashboard and landing page built on Vite-React, Next.js, Ta…
git clone https://github.com/shadcnstore/shadcn-dashboard-landing-template.gitshadcnstore/shadcn-dashboard-landing-template🎯 View Live Demo | 🧩 Explore Premium Blocks
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.
Experience the template in action:
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:
⚡ Dual Framework Support:
🎨 Live Theme Customization:
📁 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
git clone https://github.com/silicondeck/shadcn-dashboard-landing-template cd shadcn-dashboard
cd vite-version pnpm install pnpm dev
Access at: http://localhost:5173
cd nextjs-version pnpm install pnpm dev
Access at: http://localhost:3000
pnpm dev # Start development server pnpm build # Build for production pnpm preview # Preview production build pnpm lint # Run ESLint
pnpm dev # Start development server pnpm build # Build for production pnpm start # Start production server pnpm lint # Run Next.js linter
This template includes a powerful live theme customizer powered by tweakcn:
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:
src/components/theme-customizer.tsxsrc/components/theme-customizer/ folder if it existssrc/components/theme-customizer.tsxsrc/app/layout.tsxsrc/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.
This free template is just the beginning! ShadcnStore offers a complete ecosystem of free & premium UI components, dashboards and templates to accelerate your development:
🎯 Explore ShadcnStore - Premium blocks, dashboards and templates for modern web applications.
We welcome contributions! Here's how you can help:
git checkout -b my-featuregit commit -m "Add new feature"git push origin my-featureThis project is licensed under the MIT License - see the LICENSE file for details.
You are free to:
Attribution to ShadcnStore is appreciated but not required.
This template is built on the shoulders of amazing open-source projects:
⭐ Star this repo if it helped you!
A free & open-source template by ShadcnStore - Premium UI components, dashboards and templates for modern web development.
more like this
Comprehensive analytics dashboard for AI coding agents — Cursor, Windsurf, Claude Code, VS Code Copilot, Zed, Antigravi…
search projects, people, and tags