mirror of
https://github.com/mmahdium/portfolio.git
synced 2026-08-16 21:14:31 +03:30
chore: add BMAD agent workflows and configuration system
- Add comprehensive agent workflow definitions for 8 specialized roles (analyst, architect, developer, product manager, scrum master, technical writer, UX designer, QA engineer) - Add 35+ workflow definitions covering analysis, planning, solutioning, and implementation phases - Add BMAD configuration system with agent, task, tool, workflow, and file manifests - Add BMM (Business Model Methodology) documentation including quick-start guides, architecture references, and workflow analysis - Add test architecture knowledge base with 20+ testing patterns and best practices - Add team configuration templates and party mode setup for collaborative development - Establish foundation for enterprise agentic development framework with adaptive scaling capabilities
This commit is contained in:
+13
-5
@@ -20,7 +20,7 @@
|
||||
@theme {
|
||||
--font-sans: 'Geist', 'DM Sans', '-apple-system', 'ui-sans-serif', 'system-ui', 'sans-serif';
|
||||
--font-display: 'Space Grotesk', 'Geist', 'ui-sans-serif', 'sans-serif';
|
||||
|
||||
|
||||
--color-primary-50: oklch(0.98 0.01 280);
|
||||
--color-primary-100: oklch(0.95 0.03 280);
|
||||
--color-primary-200: oklch(0.89 0.08 280);
|
||||
@@ -76,7 +76,8 @@
|
||||
html {
|
||||
overflow-y: scroll;
|
||||
/* Avoid width variation */
|
||||
scroll-padding-top: 2rem; /* Offset for fixed navbar when using anchor links */
|
||||
scroll-padding-top: 2rem;
|
||||
/* Offset for fixed navbar when using anchor links */
|
||||
}
|
||||
|
||||
html,
|
||||
@@ -128,6 +129,13 @@
|
||||
--font-sans: 'Vazirmatn', 'Geist', 'ui-sans-serif', 'system-ui', 'sans-serif';
|
||||
--font-display: 'Vazirmatn', 'Space Grotesk', 'ui-sans-serif', 'sans-serif';
|
||||
}
|
||||
|
||||
/* Hide promotional banners from @nuxt/ui */
|
||||
[class*="VueSchool"],
|
||||
[class*="banner"][class*="promotional"],
|
||||
[data-v-inspector*="VueSchool"] {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
@@ -173,7 +181,7 @@
|
||||
.muted {
|
||||
@apply text-zinc-600 dark:text-zinc-300;
|
||||
}
|
||||
|
||||
|
||||
/* Gradient text effect */
|
||||
.gradient-text {
|
||||
@apply bg-gradient-to-r from-violet-600 via-purple-600 to-fuchsia-600 dark:from-violet-400 dark:via-purple-400 dark:to-fuchsia-400 bg-clip-text text-transparent;
|
||||
@@ -207,7 +215,7 @@
|
||||
.glass-card {
|
||||
@apply rounded-3xl bg-white/80 dark:bg-zinc-900/50 backdrop-blur-xl shadow-xl shadow-violet-500/5 dark:shadow-violet-500/10 border border-white/20 dark:border-zinc-800/50 transition-all duration-300;
|
||||
}
|
||||
|
||||
|
||||
.glass-card:hover {
|
||||
@apply shadow-2xl shadow-violet-500/10 dark:shadow-violet-500/20 translate-y-[-2px];
|
||||
}
|
||||
@@ -228,7 +236,7 @@
|
||||
.hover-minimal {
|
||||
@apply transition-all duration-300 ease-out hover:bg-violet-50/50 dark:hover:bg-white/5 hover:shadow-lg hover:shadow-violet-500/5;
|
||||
}
|
||||
|
||||
|
||||
/* Modern button with gradient */
|
||||
.btn-modern {
|
||||
@apply inline-flex items-center justify-center px-6 py-3 rounded-2xl font-semibold text-white bg-gradient-to-r from-violet-600 to-purple-600 hover:from-violet-700 hover:to-purple-700 shadow-lg shadow-violet-500/30 hover:shadow-xl hover:shadow-violet-500/40 transition-all duration-300 hover:scale-105;
|
||||
|
||||
Reference in New Issue
Block a user