Initial commit: SmoothSchedule multi-tenant scheduling platform

This commit includes:
- Django backend with multi-tenancy (django-tenants)
- React + TypeScript frontend with Vite
- Platform administration API with role-based access control
- Authentication system with token-based auth
- Quick login dev tools for testing different user roles
- CORS and CSRF configuration for local development
- Docker development environment setup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
poduck
2025-11-27 01:43:20 -05:00
commit 2e111364a2
567 changed files with 96410 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
.service-list {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.service-list h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: #1a202c;
}
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
}
.service-card {
background: white;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #2d3748;
}
.service-details {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
font-size: 0.9rem;
color: #4a5568;
}
.service-duration {
background: #edf2f7;
padding: 0.25rem 0.75rem;
border-radius: 4px;
}
.service-price {
font-weight: bold;
color: #2b6cb0;
font-size: 1.1rem;
}
.service-description {
color: #718096;
font-size: 0.9rem;
margin-bottom: 1rem;
line-height: 1.5;
}
.service-book-btn {
width: 100%;
padding: 0.75rem;
background: #3182ce;
color: white;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
.service-book-btn:hover {
background: #2c5282;
}
.service-list-loading,
.service-list-empty {
text-align: center;
padding: 3rem;
color: #718096;
font-size: 1.1rem;
}