'use client' import { StatsDashboard } from '@/components/admin/stats-dashboard' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { Badge } from '@/components/ui/badge' import { Users, Calendar, Settings, Upload, BarChart3, Plus } from 'lucide-react' import Link from 'next/link' export default function AdminDashboard() { return (
{/* Header */}

Admin Dashboard

Welcome to United Tattoo Studio admin panel

{/* Quick Actions */}
Manage Artists

Add, edit, and manage artist profiles and portfolios

Appointments

View and manage studio appointments and scheduling

File Manager

Upload and manage portfolio images and files

Studio Settings

Configure studio information and preferences

{/* Analytics Dashboard */}

Analytics & Statistics

{/* Recent Activity */} Recent Activity
New appointment scheduled
2 min ago
Portfolio image uploaded
15 min ago
Artist profile updated
1 hour ago
New client registered
3 hours ago
) }