import React from "react"; import { IoMdContacts } from "react-icons/io"; import { FaClock } from "react-icons/fa"; import { FaMessage } from "react-icons/fa6"; import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; import TypeWriterEffect from "react-typewriter-effect"; import cards from "./Cards"; const ScrollReveal = ({ children, direction = "left" }) => { const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.5 }); const variants = { left: { opacity: 0, x: -100 }, right: { opacity: 0, x: 100 }, up: { opacity: 0, y: 100 }, down: { opacity: 0, y: -100 }, }; return ( {children} ); }; const Testimonial = () => { const myRef = document.querySelector(".scrollable-div"); return ( <>

WHY CHOOSE US?

dashboard
Excellent Dashboards

Our descriptive dashboards give insights into your crop's health and keeps track of your burning expenses.

Check Out
{" "} Crop Disease Prediction{" "}

Predict the possible crop diseases based on their shown symptoms.

Check Out
Crop Planner

Based on previous season's crop and used pertilizers and pesticides, plan what crops would best suit the present state of your soil.

Check Out
); }; export default Testimonial;