Files
Frontend/src/app/(dashboard)/(private)/soil-data/page.tsx
T
sajad-dev cb29828a69 Remove deprecated dashboard pages and update vertical menu links for streamlined navigation
- Deleted unused pages for crop zoning, farm AI assistant, fertilization recommendation, irrigation recommendation, pest detection, plant simulator, soil data, and water data.
- Updated the vertical menu to reflect the removal of these pages, ensuring a cleaner and more efficient user experience.
2026-02-21 22:05:47 +03:30

9 lines
214 B
TypeScript

// Components Imports
import SoilDataDashboardWrapper from '@views/dashboards/farm/SoilDataDashboardWrapper'
const SoilDataPage = async () => {
return <SoilDataDashboardWrapper />
}
export default SoilDataPage