Files
smart-crop-ui/crop-x-new/src/app/(app)/agricultural-machinery/data-analysis/analysis/page.tsx
2025-11-10 09:19:56 +08:00

18 lines
486 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import { Card } from '@/components/ui/card';
export default function AnalysisPage() {
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> /agricultural-machinery/data-analysis/analysis
</p>
</div>
</Card>
</div>
);
}