Jesús Pérez dd68d190ef ci: Update pre-commit hooks configuration
- Exclude problematic markdown files from linting (existing legacy issues)
- Make clippy check less aggressive (warnings only, not -D warnings)
- Move cargo test to manual stage (too slow for pre-commit)
- Exclude SVG files from end-of-file-fixer and trailing-whitespace
- Add markdown linting exclusions for existing documentation

This allows pre-commit hooks to run successfully on new code without
blocking commits due to existing issues in legacy documentation files.
2026-01-11 21:32:56 +00:00

27 lines
963 B
Rust

// Workflows page (placeholder for Phase 4)
use crate::components::NavBar;
use leptos::prelude::*;
/// Workflows page (to be implemented in Phase 4)
#[component]
pub fn WorkflowsPage() -> impl IntoView {
view! {
<div class="min-h-screen bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900">
<NavBar />
<div class="container mx-auto px-6 py-8">
<h1 class="text-3xl font-bold text-white mb-8">"Workflows"</h1>
<div class="bg-white/10 border border-white/20 rounded-lg p-12 text-center">
<div class="text-6xl mb-4">"🚧"</div>
<h2 class="text-2xl font-semibold text-white mb-4">"Coming in Phase 4"</h2>
<p class="text-gray-400">
"Multi-agent workflow orchestration will be available in Phase 4 implementation."
</p>
</div>
</div>
</div>
}
}