import React from "react"; export const HeroSecn = () => { return (

Anything and Everything you Need to know About

Your crops and their Health!

plant
); }; export const CardWithImage = () => { return (
plant
High tech, high yields?

The Kenyan farmers deploying AI to increase productivity This article is more than 4 months old. AI apps are increasingly popular among small-scale farmers seeking to improve the quality and quantity of their crop.

Read more
); }; export const CardOnlyText = (props) => { return (
{" "} {props.headingText}{" "}

{" "} {props.bodyText}{" "}

); }; export const CardWithButton = () => { return (
Empowering smallholder farmers with AI tools can bolster global food security

{" "} AI-powered weather forecasts help rural Indian farmers make informed planting decisions, reducing debt and boosting savings.

Read more
); }; export const CardWithOnlyImage = () => { return (
product image
); }; const cards = [ HeroSecn, CardWithImage, CardOnlyText, CardWithButton, CardWithImage, ]; export default cards; export const CardLayout = () => { return (
); };