Files
smart-crop-ui/crop-x/src/app/ai-crop-model/layout.tsx
2025-10-20 16:19:41 +08:00

22 lines
549 B
TypeScript

import { ReactNode } from 'react'
export default function AiCropModelLayout({
children,
}: {
children: ReactNode
}) {
return (
<div className="min-h-screen bg-gray-50">
<header className="bg-white shadow-sm border-b">
<div className="container mx-auto px-4 py-4">
<h1 className="text-2xl font-bold text-green-900">
🤖 AI作物模型精准决策系统
</h1>
</div>
</header>
<main className="container mx-auto px-4 py-8">
{children}
</main>
</div>
)
}