生产管理系统前端 - AI作物模型精准决策系统 框架搭建

This commit is contained in:
2025-10-28 19:46:50 +08:00
parent 7a0096caed
commit 58f5ca7f22
27 changed files with 609 additions and 151 deletions

View File

@@ -0,0 +1,18 @@
'use client';
import { Card } from '@/components/ui/card';
export default function DashboardPage() {
return (
<div className="space-y-6">
<Card className="p-6">
<h2 className="text-xl font-semibold"></h2>
<div className="p-3 bg-muted rounded-lg mt-3">
<p className="text-sm">
<strong></strong> /ai-crop-model/support/dashboard
</p>
</div>
</Card>
</div>
);
}