2 Commits

29 changed files with 4390 additions and 1821 deletions
-2
View File
@@ -1,2 +0,0 @@
package-lock.json
node_modules/
+1 -1
View File
@@ -2,7 +2,7 @@ const multer = require("multer");
const storage = multer.diskStorage({ const storage = multer.diskStorage({
destination: function (req, file, cb) { destination: function (req, file, cb) {
cb(null, "./uploads"); cb(null, "./public/images");
}, },
filename: function (req, file, cb) { filename: function (req, file, cb) {
+3493 -732
View File
File diff suppressed because it is too large Load Diff
+14 -11
View File
@@ -10,20 +10,23 @@
"license": "ISC", "license": "ISC",
"description": "", "description": "",
"dependencies": { "dependencies": {
"@google/generative-ai": "^0.24.1", "@google/generative-ai": "^0.22.0",
"bcrypt": "^6.0.0", "@huggingface/transformers": "^3.3.3",
"cloudinary": "^2.7.0", "@xenova/transformers": "^2.17.2",
"cookie-parser": "^1.4.7", "bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.5.0", "dotenv": "^16.4.5",
"express": "^5.1.0", "express": "^4.19.2",
"jimp": "^1.6.0",
"jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.0", "mongoose": "^8.6.1",
"multer": "^2.0.1", "multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.3", "nodemailer": "^6.9.15",
"socket.io": "^4.8.1" "socket.io": "^4.7.5"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^3.1.10" "nodemon": "^3.1.4"
} }
} }
+12 -38
View File
@@ -1,70 +1,45 @@
import { useDispatch, useSelector } from "react-redux"; import { useDispatch, useSelector } from "react-redux";
import "./App.css"; import "./App.css";
// import Navbar from "./components/Navbar"; //import Navbar from "./components/Navbar";
import Navbar2 from "./components/Navbar2"; import Navbar2 from "./components/Navbar2";
import { useEffect, useState } from "react"; import { useEffect } from "react";
import { userSliceActions } from "./store/userSlice"; import { userSliceActions } from "./store/userSlice";
import { Outlet } from "react-router-dom"; import { Outlet } from "react-router-dom";
import { BACKEND_URL } from "./constants"; import { BACKEND_URL } from "./constants";
// Simple LanguageSwitcher component
function LanguageSwitcher({ language, setLanguage }) {
return (
<select
value={language}
onChange={(e) => {
setLanguage(e.target.value);
localStorage.setItem("language", e.target.value);
}}
className="absolute top-2 right-2 p-1 rounded border"
aria-label="Select language"
>
<option value="en">English</option>
<option value="hi">Hindi (ि)</option>
<option value="mr">Marathi (मर)</option>
<option value="fr">Français</option>
{/* Add more languages here */}
</select>
);
}
function App() { function App() {
const user = useSelector((store) => store.user); const user = useSelector((store) => store.user);
const dispatch = useDispatch(); const dispatch = useDispatch();
const loader = useSelector((store) => store.loader); const loader = useSelector((store) => store.loader);
// Language state, initialized from localStorage or default to 'en'
const [language, setLanguage] = useState(
localStorage.getItem("language") || "en"
);
console.log("Current language:", language);
useEffect(() => { useEffect(() => {
async function initialiseUser() { async function initialiseUser() {
if (user.role === "unloggeduser") { if (user.role == "unloggeduser") {
const responce = await fetch(`${BACKEND_URL}/api/v1/getuser`, { const responce = await fetch(`${BACKEND_URL}/api/v1/getuser`, {
method: "GET", method: "GET",
credentials: "include", credentials: "include",
}); });
const userData = await responce.json(); const userData = await responce.json();
//console.log("User Datae is ", userData);
dispatch(userSliceActions.addUser(userData.data)); dispatch(userSliceActions.addUser(userData.data));
//console.log("Updated User is : ", user);
} }
} }
initialiseUser(); initialiseUser();
}, []); }, []);
return ( return (
<> <>
<div className="w-full h-auto flex-col relative"> <div className="w-full h-auto flex-col relative">
{/* 2. Language Switcher visible on all pages */}
<LanguageSwitcher language={language} setLanguage={setLanguage} />
{/* 3. Pass language as prop to Navbar2 and Outlet if needed */}
<Navbar2 language={language} />
<Outlet context={{ language }} />
<Outlet />
<div <div
className={`${ className={`${
loader ? "block" : "hidden" loader ? "block" : "hidden"
@@ -98,4 +73,3 @@ function App() {
} }
export default App; export default App;
-13
View File
@@ -1,13 +0,0 @@
import React from "react";
const LanguageSwitcher = ({ currentLanguage, onChangeLanguage }) => (
<select value={currentLanguage} onChange={e => onChangeLanguage(e.target.value)}>
<option value="en">English</option>
<option value="hi">Hindi (ि)</option>
<option value="mr">Marathi (मर)</option>
<option value="fr">French (Français)</option>
{/* Add more languages as needed */}
</select>
);
export default LanguageSwitcher;
-29
View File
@@ -1,29 +0,0 @@
const Laoder = () => {
return (
<div className="w-full bg-white rounded-lg shadow p-4">
<div class="flex items-center justify-center w-full h-56 border border-gray-200 rounded-lg bg-gray-50 dark:bg-gray-800 dark:border-gray-700">
<div role="status">
<svg
aria-hidden="true"
class="w-8 h-8 text-gray-200 animate-spin dark:text-gray-600 fill-blue-600"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
fill="currentColor"
/>
<path
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
fill="currentFill"
/>
</svg>
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
);
};
export default Laoder;
-117
View File
@@ -1,117 +0,0 @@
{
"welcome": "Welcome to CropCompass",
"dashboard": "Dashboard",
"settings": "Settings",
"login_welcome_back": "Welcome Back!",
"login_title": "Login",
"login_subtitle": "Welcome back! Please login to your account.",
"login_email_label": "Email",
"login_email_placeholder": "username@gmail.com",
"login_password_label": "Password",
"login_password_placeholder": "********",
"login_remember_me": "Remember Me",
"login_forgot_password": "Forgot Password?",
"login_button": "Login",
"login_new_user": "New User?",
"login_signup": "Signup",
"main_login_heading": "Welcome to the Login Portal",
"signup_register_heading": "Register Your account",
"signup_welcome": "Welcome to Crop Compass.",
"signup_subtitle": "Please register your new account.",
"signup_first_name_label": "First Name",
"signup_first_name_placeholder": "John",
"signup_last_name_label": "Last Name",
"signup_last_name_placeholder": "Doe",
"signup_email_label": "Email",
"signup_email_placeholder": "user@mail.com",
"signup_password_label": "Password",
"signup_password_placeholder": "At least 6 unique Characters.. ",
"signup_remember_me": "Remember Me",
"signup_register_button": "Register your Account",
"signup_already_have_account": "Already have an Account?",
"signup_login": "Login",
"signup_journey_heading": "Start your Journey",
"signup_with": "with",
"forget_password_heading": "Forget Password?",
"forget_password_subtitle": "No worries, we'll send you reset instructions.",
"forget_password_email_placeholder": "Enter your email",
"forget_password_send_email": "Send Email",
"forget_password_email_sent": "Email Sent to your Mail",
"forget_password_back_to_login": "Back to Login Page",
"reset_password_heading": "Create New Password",
"reset_password_subtitle": "Create your new, unique and secure password here.",
"reset_password_new_label": "New Password :",
"reset_password_new_placeholder": "Enter your New Password",
"reset_password_confirm_label": "Confirm Password :",
"reset_password_confirm_placeholder": "Enter your Confirm Password",
"reset_password_error": "Password and confirm password do not match. Please enter the same password in both fields.",
"reset_password_button": "Reset Password",
"reset_password_back_to_login": "Back to Login Page",
"hero_one_stop_solution": "One stop solution for every farmer's need.",
"hero_plant_alt": "plant",
"card_with_image_alt": "plant",
"card_with_image_title": "High tech, high yields?",
"card_with_image_body": "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.",
"card_with_image_read_more": "Read more",
"card_with_button_title": "Empowering smallholder farmers with AI tools can bolster global food security",
"card_with_button_body": "AI-powered weather forecasts help rural Indian farmers make informed planting decisions, reducing debt and boosting savings.",
"card_with_button_read_more": "Read more",
"card_with_only_image_alt": "Agritech success story",
"card_only_text_heading1": "AI for agriculture: How Indian farmers are harvesting innovation",
"card_only_text_body1": "Farmers participating in the programme saw a 21% increase in chili yields per acre, a 9% reduction in pesticide use, a 5% decrease in fertilizer usage, and an 8% improvement in unit prices due to quality enhancements.",
"card_only_text_heading2": "SugarChain: Blockchain technology meets Agriculture",
"card_only_text_body2": "The use of blockchain technology can help farmers automate processes with high trust, addressing issues like middlemen involvement and ensuring accurate compensation for their products",
"customization_schedule": "CUSTOMIZE WITH YOUR SCHEDULE",
"customization_tutors_title": "Talented and Qualified Tutors to Serve You for Help",
"customization_paragraph": "Our scheduling system allows you to select based on free time. Lorem ipsum demo text for template. Keep track of your students class and tutoring schedules, and never miss your lectures. The best online class scheduling system with easy accessibility. Lorem ipsum is a placeholder text commonly used to demonstrate the visual form",
"customization_get_started": "Get started",
"customization_image_alt": "Interaction illustration",
"footer_logo_alt": "Crop Compass Logo",
"footer_brand": "Crop Compass",
"footer_rights_reserved": "All Rights Reserved.",
"hero2_card1_heading": "AI for agriculture: How Indian farmers are harvesting innovation",
"hero2_card1_body": "Farmers participating in the programme saw a 21% increase in chili yields per acre, a 9% reduction in pesticide use, a 5% decrease in fertilizer usage, and an 8% improvement in unit prices due to quality enhancements.",
"hero2_card2_heading": "SugarChain: Blockchain technology meets Agriculture",
"hero2_card2_body": "The use of blockchain technology can help farmers automate processes with high trust, addressing issues like middlemen involvement and ensuring accurate compensation for their products",
"hero_heading_main": "Anything and Everything you Need to know About",
"hero_heading_sub": "Your crops and their Health!",
"hero_image_alt": "plant",
"hero_card1_image_alt": "plant",
"hero_card1_title": "Noteworthy technology acquisitions 2021",
"hero_card1_body": "Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.",
"hero_card1_read_more": "Read more",
"hero_card2_title": "Noteworthy technology acquisitions 2021",
"hero_card2_body": "Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.",
"hero_card3_title": "Noteworthy technology acquisitions 2021",
"hero_card3_body": "Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.",
"hero_card3_read_more": "Read more",
"hero_card4_image_alt": "product image",
"hero_card5_title": "Noteworthy technology acquisitions 2021",
"hero_card5_body": "Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.",
"testimonial_heading": "WHY CHOOSE US?",
"testimonial_typewriter": "Unparalleled management for crops & farms.",
"testimonial_card1_title": "Excellent Dashboards",
"testimonial_card1_body": "Our descriptive dashboards give insights into your crop's health and keep track of your burning expenses.",
"testimonial_card2_title": "Crop Disease Prediction",
"testimonial_card2_body": "Predict the possible crop diseases based on their shown symptoms.",
"testimonial_card3_title": "Crop Planner",
"testimonial_card3_body": "Based on previous season's crop and used fertilizers and pesticides, plan what crops would best suit the present state of your soil.",
"testimonial_check_out": "Check Out"
}
-117
View File
@@ -1,117 +0,0 @@
{
"welcome": "Bienvenue sur CropCompass",
"dashboard": "Tableau de bord",
"settings": "Paramètres",
"login_welcome_back": "Bon retour !",
"login_title": "Connexion",
"login_subtitle": "Bon retour ! Veuillez vous connecter à votre compte.",
"login_email_label": "E-mail",
"login_email_placeholder": "nomutilisateur@gmail.com",
"login_password_label": "Mot de passe",
"login_password_placeholder": "********",
"login_remember_me": "Se souvenir de moi",
"login_forgot_password": "Mot de passe oublié ?",
"login_button": "Connexion",
"login_new_user": "Nouvel utilisateur ?",
"login_signup": "S'inscrire",
"main_login_heading": "Bienvenue sur le portail de connexion",
"signup_register_heading": "Enregistrez votre compte",
"signup_welcome": "Bienvenue sur Crop Compass.",
"signup_subtitle": "Veuillez enregistrer votre nouveau compte.",
"signup_first_name_label": "Prénom",
"signup_first_name_placeholder": "Jean",
"signup_last_name_label": "Nom",
"signup_last_name_placeholder": "Dupont",
"signup_email_label": "E-mail",
"signup_email_placeholder": "utilisateur@mail.com",
"signup_password_label": "Mot de passe",
"signup_password_placeholder": "Au moins 6 caractères uniques.. ",
"signup_remember_me": "Se souvenir de moi",
"signup_register_button": "Enregistrer votre compte",
"signup_already_have_account": "Vous avez déjà un compte ?",
"signup_login": "Connexion",
"signup_journey_heading": "Commencez votre aventure",
"signup_with": "avec",
"forget_password_heading": "Mot de passe oublié ?",
"forget_password_subtitle": "Pas d'inquiétude, nous vous enverrons des instructions de réinitialisation.",
"forget_password_email_placeholder": "Entrez votre e-mail",
"forget_password_send_email": "Envoyer l'e-mail",
"forget_password_email_sent": "E-mail envoyé à votre adresse",
"forget_password_back_to_login": "Retour à la page de connexion",
"reset_password_heading": "Créer un nouveau mot de passe",
"reset_password_subtitle": "Créez ici votre nouveau mot de passe unique et sécurisé.",
"reset_password_new_label": "Nouveau mot de passe :",
"reset_password_new_placeholder": "Entrez votre nouveau mot de passe",
"reset_password_confirm_label": "Confirmer le mot de passe :",
"reset_password_confirm_placeholder": "Entrez à nouveau votre mot de passe",
"reset_password_error": "Le mot de passe et sa confirmation ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs.",
"reset_password_button": "Réinitialiser le mot de passe",
"reset_password_back_to_login": "Retour à la page de connexion",
"hero_one_stop_solution": "Une solution unique pour tous les besoins des agriculteurs.",
"hero_plant_alt": "plante",
"card_with_image_alt": "plante",
"card_with_image_title": "Haute technologie, hauts rendements ?",
"card_with_image_body": "Les agriculteurs kenyans utilisent l'IA pour augmenter leur productivité. Cet article a plus de 4 mois. Les applications d'IA sont de plus en plus populaires auprès des petits exploitants cherchant à améliorer la qualité et la quantité de leurs récoltes.",
"card_with_image_read_more": "Lire la suite",
"card_with_button_title": "Donner aux petits exploitants des outils d'IA peut renforcer la sécurité alimentaire mondiale",
"card_with_button_body": "Les prévisions météorologiques alimentées par l'IA aident les agriculteurs ruraux indiens à prendre des décisions de plantation éclairées, réduisant les dettes et augmentant les économies.",
"card_with_button_read_more": "Lire la suite",
"card_with_only_image_alt": "Succès de l'agritech",
"card_only_text_heading1": "LIA pour lagriculture : comment les agriculteurs indiens récoltent linnovation",
"card_only_text_body1": "Les agriculteurs participant au programme ont constaté une augmentation de 21 % des rendements de piment par acre, une réduction de 9 % de lutilisation de pesticides, une diminution de 5 % de lutilisation dengrais et une amélioration de 8 % des prix unitaires grâce à lamélioration de la qualité.",
"card_only_text_heading2": "SugarChain : la blockchain rencontre lagriculture",
"card_only_text_body2": "Lutilisation de la technologie blockchain peut aider les agriculteurs à automatiser les processus avec une grande confiance, à résoudre les problèmes liés aux intermédiaires et à garantir une rémunération précise de leurs produits",
"customization_schedule": "PERSONNALISEZ AVEC VOTRE EMPLOI DU TEMPS",
"customization_tutors_title": "Des tuteurs talentueux et qualifiés à votre service",
"customization_paragraph": "Notre système de planification vous permet de sélectionner en fonction de votre temps libre. Texte de démonstration Lorem ipsum pour le modèle. Suivez les horaires de vos étudiants et de tutorat, et ne manquez jamais vos cours. Le meilleur système de planification de cours en ligne avec une accessibilité facile. Lorem ipsum est un texte de remplacement couramment utilisé pour démontrer la forme visuelle",
"customization_get_started": "Commencer",
"customization_image_alt": "Illustration d'interaction",
"footer_logo_alt": "Logo de Crop Compass",
"footer_brand": "Crop Compass",
"footer_rights_reserved": "Tous droits réservés.",
"hero2_card1_heading": "LIA pour lagriculture : comment les agriculteurs indiens récoltent linnovation",
"hero2_card1_body": "Les agriculteurs participant au programme ont constaté une augmentation de 21 % des rendements de piment par acre, une réduction de 9 % de lutilisation de pesticides, une diminution de 5 % de lutilisation dengrais et une amélioration de 8 % des prix unitaires grâce à lamélioration de la qualité.",
"hero2_card2_heading": "SugarChain : la blockchain rencontre lagriculture",
"hero2_card2_body": "Lutilisation de la technologie blockchain peut aider les agriculteurs à automatiser les processus avec une grande confiance, à résoudre les problèmes liés aux intermédiaires et à garantir une rémunération précise de leurs produits",
"hero_heading_main": "Tout ce que vous devez savoir sur",
"hero_heading_sub": "Vos cultures et leur santé !",
"hero_image_alt": "plante",
"hero_card1_image_alt": "plante",
"hero_card1_title": "Acquisitions technologiques remarquables 2021",
"hero_card1_body": "Voici les plus grandes acquisitions technologiques d'entreprise de 2021 à ce jour, par ordre chronologique inverse.",
"hero_card1_read_more": "Lire la suite",
"hero_card2_title": "Acquisitions technologiques remarquables 2021",
"hero_card2_body": "Voici les plus grandes acquisitions technologiques d'entreprise de 2021 à ce jour, par ordre chronologique inverse.",
"hero_card3_title": "Acquisitions technologiques remarquables 2021",
"hero_card3_body": "Voici les plus grandes acquisitions technologiques d'entreprise de 2021 à ce jour, par ordre chronologique inverse.",
"hero_card3_read_more": "Lire la suite",
"hero_card4_image_alt": "image du produit",
"hero_card5_title": "Acquisitions technologiques remarquables 2021",
"hero_card5_body": "Voici les plus grandes acquisitions technologiques d'entreprise de 2021 à ce jour, par ordre chronologique inverse.",
"testimonial_heading": "POURQUOI NOUS CHOISIR ?",
"testimonial_typewriter": "Gestion inégalée pour les cultures et les fermes.",
"testimonial_card1_title": "Tableaux de bord excellents",
"testimonial_card1_body": "Nos tableaux de bord descriptifs donnent un aperçu de la santé de vos cultures et suivent vos dépenses importantes.",
"testimonial_card2_title": "Prédiction des maladies des cultures",
"testimonial_card2_body": "Prédisez les maladies possibles des cultures en fonction des symptômes observés.",
"testimonial_card3_title": "Planificateur de cultures",
"testimonial_card3_body": "En fonction des cultures de la saison précédente et des engrais et pesticides utilisés, planifiez les cultures qui conviendraient le mieux à l’état actuel de votre sol.",
"testimonial_check_out": "Voir"
}
-116
View File
@@ -1,116 +0,0 @@
{
"welcome": "क्रॉप कम्पास में आपका स्वागत है",
"dashboard": "डैशबोर्ड",
"settings": "सेटिंग्स",
"login_welcome_back": "फिर से स्वागत है!",
"login_title": "लॉगिन",
"login_subtitle": "फिर से स्वागत है! कृपया अपने खाते में लॉगिन करें।",
"login_email_label": "ईमेल",
"login_email_placeholder": "username@gmail.com",
"login_password_label": "पासवर्ड",
"login_password_placeholder": "********",
"login_remember_me": "मुझे याद रखें",
"login_forgot_password": "पासवर्ड भूल गए?",
"login_button": "लॉगिन",
"login_new_user": "नया उपयोगकर्ता?",
"login_signup": "साइनअप",
"main_login_heading": "लॉगिन पोर्टल में आपका स्वागत है",
"signup_register_heading": "अपना खाता पंजीकृत करें",
"signup_welcome": "क्रॉप कम्पास में आपका स्वागत है।",
"signup_subtitle": "कृपया अपना नया खाता पंजीकृत करें।",
"signup_first_name_label": "पहला नाम",
"signup_first_name_placeholder": "जॉन",
"signup_last_name_label": "अंतिम नाम",
"signup_last_name_placeholder": "डो",
"signup_email_label": "ईमेल",
"signup_email_placeholder": "user@mail.com",
"signup_password_label": "पासवर्ड",
"signup_password_placeholder": "कम से कम 6 अद्वितीय अक्षर...",
"signup_remember_me": "मुझे याद रखें",
"signup_register_button": "अपना खाता पंजीकृत करें",
"signup_already_have_account": "पहले से खाता है?",
"signup_login": "लॉगिन",
"signup_journey_heading": "अपनी यात्रा शुरू करें",
"signup_with": "के साथ",
"forget_password_heading": "पासवर्ड भूल गए?",
"forget_password_subtitle": "कोई बात नहीं, हम आपको रीसेट निर्देश भेज देंगे।",
"forget_password_email_placeholder": "अपना ईमेल दर्ज करें",
"forget_password_send_email": "ईमेल भेजें",
"forget_password_email_sent": "ईमेल आपके इनबॉक्स में भेजा गया है",
"forget_password_back_to_login": "लॉगिन पेज पर वापस जाएं",
"reset_password_heading": "नया पासवर्ड बनाएं",
"reset_password_subtitle": "यहां अपना नया, अद्वितीय और सुरक्षित पासवर्ड बनाएं।",
"reset_password_new_label": "नया पासवर्ड:",
"reset_password_new_placeholder": "अपना नया पासवर्ड दर्ज करें",
"reset_password_confirm_label": "पासवर्ड की पुष्टि करें:",
"reset_password_confirm_placeholder": "अपना पुष्टि पासवर्ड दर्ज करें",
"reset_password_error": "पासवर्ड और पुष्टि पासवर्ड मेल नहीं खाते। कृपया दोनों फ़ील्ड में समान पासवर्ड दर्ज करें।",
"reset_password_button": "पासवर्ड रीसेट करें",
"reset_password_back_to_login": "लॉगिन पेज पर वापस जाएं",
"hero_one_stop_solution": "हर किसान की ज़रूरत के लिए एक ही समाधान।",
"hero_plant_alt": "पौधा",
"card_with_image_alt": "पौधा",
"card_with_image_title": "हाई टेक, उच्च उत्पादन?",
"card_with_image_body": "केन्या के किसान AI का उपयोग करके उत्पादकता बढ़ा रहे हैं। यह लेख 4 महीने पुराना है। छोटे किसानों में AI ऐप्स गुणवत्ता और मात्रा सुधारने के लिए तेजी से लोकप्रिय हो रहे हैं।",
"card_with_image_read_more": "और पढ़ें",
"card_with_button_title": "AI उपकरणों से छोटे किसानों को सशक्त बनाकर वैश्विक खाद्य सुरक्षा को बढ़ावा",
"card_with_button_body": "AI-संचालित मौसम पूर्वानुमान भारतीय किसानों को बेहतर निर्णय लेने में मदद करते हैं, कर्ज घटाते हैं और बचत बढ़ाते हैं।",
"card_with_button_read_more": "और पढ़ें",
"card_with_only_image_alt": "एग्रीटेक सफलता की कहानी",
"card_only_text_heading1": "कृषि में AI: कैसे भारतीय किसान नवाचार का लाभ उठा रहे हैं",
"card_only_text_body1": "इस कार्यक्रम में भाग लेने वाले किसानों की मिर्च की उपज में प्रति एकड़ 21% वृद्धि, कीटनाशक उपयोग में 9% कमी, उर्वरक उपयोग में 5% कमी और गुणवत्ता सुधार के कारण मूल्य में 8% वृद्धि देखी गई।",
"card_only_text_heading2": "शुगरचेन: कृषि में ब्लॉकचेन तकनीक",
"card_only_text_body2": "ब्लॉकचेन तकनीक के उपयोग से किसान प्रक्रियाओं को उच्च विश्वास के साथ स्वचालित कर सकते हैं, बिचौलियों की भूमिका कम होती है और सही भुगतान सुनिश्चित होता है।",
"customization_schedule": "अपने शेड्यूल के अनुसार अनुकूलित करें",
"customization_tutors_title": "आपकी मदद के लिए प्रतिभाशाली और योग्य शिक्षक",
"customization_paragraph": "हमारी शेड्यूलिंग प्रणाली आपको अपने खाली समय के अनुसार चुनने की सुविधा देती है। छात्रों की कक्षा और ट्यूटरिंग शेड्यूल को ट्रैक करें और कोई भी लेक्चर न छोड़ें। सबसे अच्छा ऑनलाइन कक्षा शेड्यूलिंग सिस्टम।",
"customization_get_started": "शुरू करें",
"customization_image_alt": "इंटरएक्शन चित्रण",
"footer_logo_alt": "क्रॉप कम्पास लोगो",
"footer_brand": "क्रॉप कम्पास",
"footer_rights_reserved": "सभी अधिकार सुरक्षित।",
"hero2_card1_heading": "कृषि में AI: कैसे भारतीय किसान नवाचार का लाभ उठा रहे हैं",
"hero2_card1_body": "इस कार्यक्रम में भाग लेने वाले किसानों की मिर्च की उपज में प्रति एकड़ 21% वृद्धि, कीटनाशक उपयोग में 9% कमी, उर्वरक उपयोग में 5% कमी और गुणवत्ता सुधार के कारण मूल्य में 8% वृद्धि देखी गई।",
"hero2_card2_heading": "शुगरचेन: कृषि में ब्लॉकचेन तकनीक",
"hero2_card2_body": "ब्लॉकचेन तकनीक के उपयोग से किसान प्रक्रियाओं को उच्च विश्वास के साथ स्वचालित कर सकते हैं, बिचौलियों की भूमिका कम होती है और सही भुगतान सुनिश्चित होता है।",
"hero_heading_main": "अपने फसलों और उनकी सेहत के बारे में सब कुछ जानें",
"hero_heading_sub": "आपकी फसलों और उनकी सेहत!",
"hero_image_alt": "पौधा",
"hero_card1_image_alt": "पौधा",
"hero_card1_title": "2021 की उल्लेखनीय टेक्नोलॉजी अधिग्रहण",
"hero_card1_body": "अब तक के सबसे बड़े एंटरप्राइज टेक्नोलॉजी अधिग्रहण, उल्टे कालक्रम में।",
"hero_card1_read_more": "और पढ़ें",
"hero_card2_title": "2021 की उल्लेखनीय टेक्नोलॉजी अधिग्रहण",
"hero_card2_body": "अब तक के सबसे बड़े एंटरप्राइज टेक्नोलॉजी अधिग्रहण, उल्टे कालक्रम में।",
"hero_card3_title": "2021 की उल्लेखनीय टेक्नोलॉजी अधिग्रहण",
"hero_card3_body": "अब तक के सबसे बड़े एंटरप्राइज टेक्नोलॉजी अधिग्रहण, उल्टे कालक्रम में।",
"hero_card3_read_more": "और पढ़ें",
"hero_card4_image_alt": "उत्पाद छवि",
"hero_card5_title": "2021 की उल्लेखनीय टेक्नोलॉजी अधिग्रहण",
"hero_card5_body": "अब तक के सबसे बड़े एंटरप्राइज टेक्नोलॉजी अधिग्रहण, उल्टे कालक्रम में।",
"testimonial_heading": "हमें क्यों चुनें?",
"testimonial_typewriter": "फसलों और खेतों के लिए बेजोड़ प्रबंधन।",
"testimonial_card1_title": "उत्कृष्ट डैशबोर्ड",
"testimonial_card1_body": "हमारे विवरणात्मक डैशबोर्ड आपकी फसलों की स्थिति और खर्चों पर नजर रखते हैं।",
"testimonial_card2_title": "फसल रोग पूर्वानुमान",
"testimonial_card2_body": "दिखाई देने वाले लक्षणों के आधार पर संभावित फसल रोगों की भविष्यवाणी करें।",
"testimonial_card3_title": "फसल योजना",
"testimonial_card3_body": "पिछले सीजन की फसल और उपयोग किए गए उर्वरक और कीटनाशकों के आधार पर, वर्तमान मिट्टी के अनुसार सर्वोत्तम फसल योजना बनाएं।",
"testimonial_check_out": "देखें"
}
-116
View File
@@ -1,116 +0,0 @@
{
"welcome": "क्रॉप कम्पासमध्ये आपले स्वागत आहे",
"dashboard": "डॅशबोर्ड",
"settings": "सेटिंग्ज",
"login_welcome_back": "पुन्हा स्वागत आहे!",
"login_title": "लॉगिन",
"login_subtitle": "पुन्हा स्वागत आहे! कृपया आपल्या खात्यात लॉगिन करा.",
"login_email_label": "ईमेल",
"login_email_placeholder": "username@gmail.com",
"login_password_label": "पासवर्ड",
"login_password_placeholder": "********",
"login_remember_me": "माझी आठवण ठेवा",
"login_forgot_password": "पासवर्ड विसरलात?",
"login_button": "लॉगिन",
"login_new_user": "नवीन वापरकर्ता?",
"login_signup": "नोंदणी करा",
"main_login_heading": "लॉगिन पोर्टलमध्ये आपले स्वागत आहे",
"signup_register_heading": "आपले खाते नोंदणी करा",
"signup_welcome": "क्रॉप कम्पासमध्ये आपले स्वागत आहे.",
"signup_subtitle": "कृपया आपले नवीन खाते नोंदणी करा.",
"signup_first_name_label": "पहिले नाव",
"signup_first_name_placeholder": "जॉन",
"signup_last_name_label": "आडनाव",
"signup_last_name_placeholder": "डो",
"signup_email_label": "ईमेल",
"signup_email_placeholder": "user@mail.com",
"signup_password_label": "पासवर्ड",
"signup_password_placeholder": "किमान 6 अद्वितीय अक्षरे...",
"signup_remember_me": "माझी आठवण ठेवा",
"signup_register_button": "आपले खाते नोंदणी करा",
"signup_already_have_account": "आधीच खाते आहे?",
"signup_login": "लॉगिन",
"signup_journey_heading": "आपली यात्रा सुरू करा",
"signup_with": "सह",
"forget_password_heading": "पासवर्ड विसरलात?",
"forget_password_subtitle": "चिंता करू नका, आम्ही आपल्याला रीसेट करण्याच्या सूचना पाठवू.",
"forget_password_email_placeholder": "आपला ईमेल टाका",
"forget_password_send_email": "ईमेल पाठवा",
"forget_password_email_sent": "ईमेल पाठवला गेला आहे",
"forget_password_back_to_login": "लॉगिन पेजवर परत जा",
"reset_password_heading": "नवीन पासवर्ड तयार करा",
"reset_password_subtitle": "येथे आपला नवीन, सुरक्षित पासवर्ड तयार करा.",
"reset_password_new_label": "नवीन पासवर्ड:",
"reset_password_new_placeholder": "नवीन पासवर्ड टाका",
"reset_password_confirm_label": "पासवर्डची पुष्टी करा:",
"reset_password_confirm_placeholder": "पासवर्डची पुष्टी करा",
"reset_password_error": "पासवर्ड आणि पुष्टी पासवर्ड जुळत नाहीत. कृपया दोन्ही ठिकाणी एकच पासवर्ड टाका.",
"reset_password_button": "पासवर्ड रीसेट करा",
"reset_password_back_to_login": "लॉगिन पेजवर परत जा",
"hero_one_stop_solution": "प्रत्येक शेतकऱ्याच्या गरजेसाठी एकाच ठिकाणी उपाय.",
"hero_plant_alt": "झाड",
"card_with_image_alt": "झाड",
"card_with_image_title": "हाय-टेक, जास्त उत्पादन?",
"card_with_image_body": "केनियातील शेतकरी AI वापरून उत्पादकता वाढवत आहेत. हा लेख ४ महिन्यांपेक्षा जुना आहे. लहान शेतकऱ्यांमध्ये AI अॅप्स अधिक लोकप्रिय होत आहेत.",
"card_with_image_read_more": "अधिक वाचा",
"card_with_button_title": "AI साधनांनी लहान शेतकऱ्यांना सशक्त करून जागतिक अन्न सुरक्षेला चालना",
"card_with_button_body": "AI आधारित हवामान अंदाजामुळे भारतीय शेतकऱ्यांना चांगले निर्णय घेण्यास मदत होते, कर्ज कमी होते आणि बचत वाढते.",
"card_with_button_read_more": "अधिक वाचा",
"card_with_only_image_alt": "अॅग्रीटेक यशोगाथा",
"card_only_text_heading1": "शेतीसाठी AI: भारतीय शेतकरी कसे नवकल्पना करत आहेत",
"card_only_text_body1": "या कार्यक्रमात सहभागी झालेल्या शेतकऱ्यांची मिरची उत्पादनात २१% वाढ, कीटकनाशक वापरात ९% घट, खत वापरात ५% घट, आणि गुणवत्तेमुळे किंमतीत ८% वाढ झाली.",
"card_only_text_heading2": "शुगरचेन: ब्लॉकचेन तंत्रज्ञान आणि शेती",
"card_only_text_body2": "ब्लॉकचेन तंत्रज्ञानामुळे प्रक्रिया स्वयंचलित करता येतात, दलालांची भूमिका कमी होते आणि शेतकऱ्यांना योग्य मोबदला मिळतो.",
"customization_schedule": "आपल्या वेळापत्रकानुसार सानुकूल करा",
"customization_tutors_title": "आपल्याला मदतीसाठी कुशल आणि पात्र शिक्षक",
"customization_paragraph": "आमची वेळापत्रक प्रणाली आपल्याला आपल्या मोकळ्या वेळेनुसार निवडण्याची सुविधा देते. आपले वर्ग व शिकवणीचे वेळापत्रक व्यवस्थापित करा आणि एकही व्याख्यान चुकवू नका.",
"customization_get_started": "सुरू करा",
"customization_image_alt": "इंटरअ‍ॅक्शन प्रतिमा",
"footer_logo_alt": "क्रॉप कम्पास लोगो",
"footer_brand": "क्रॉप कम्पास",
"footer_rights_reserved": "सर्व हक्क राखीव.",
"hero2_card1_heading": "शेतीसाठी AI: भारतीय शेतकरी कसे नवकल्पना करत आहेत",
"hero2_card1_body": "या कार्यक्रमात सहभागी झालेल्या शेतकऱ्यांची मिरची उत्पादनात २१% वाढ, कीटकनाशक वापरात ९% घट, खत वापरात ५% घट, आणि गुणवत्तेमुळे किंमतीत ८% वाढ झाली.",
"hero2_card2_heading": "शुगरचेन: ब्लॉकचेन तंत्रज्ञान आणि शेती",
"hero2_card2_body": "ब्लॉकचेन तंत्रज्ञानामुळे प्रक्रिया स्वयंचलित करता येतात, दलालांची भूमिका कमी होते आणि शेतकऱ्यांना योग्य मोबदला मिळतो.",
"hero_heading_main": "आपल्या पिकांबद्दल सर्व काही जाणून घ्या",
"hero_heading_sub": "आपल्या पिकांची आरोग्य स्थिती!",
"hero_image_alt": "झाड",
"hero_card1_image_alt": "झाड",
"hero_card1_title": "२०२१ मधील उल्लेखनीय तंत्रज्ञान खरेदी",
"hero_card1_body": "२०२१ मधील सर्वात मोठ्या एंटरप्राइज तंत्रज्ञान खरेदी, उलट्या क्रमाने.",
"hero_card1_read_more": "अधिक वाचा",
"hero_card2_title": "२०२१ मधील उल्लेखनीय तंत्रज्ञान खरेदी",
"hero_card2_body": "२०२१ मधील सर्वात मोठ्या एंटरप्राइज तंत्रज्ञान खरेदी, उलट्या क्रमाने.",
"hero_card3_title": "२०२१ मधील उल्लेखनीय तंत्रज्ञान खरेदी",
"hero_card3_body": "२०२१ मधील सर्वात मोठ्या एंटरप्राइज तंत्रज्ञान खरेदी, उलट्या क्रमाने.",
"hero_card3_read_more": "अधिक वाचा",
"hero_card4_image_alt": "उत्पादन प्रतिमा",
"hero_card5_title": "२०२१ मधील उल्लेखनीय तंत्रज्ञान खरेदी",
"hero_card5_body": "२०२१ मधील सर्वात मोठ्या एंटरप्राइज तंत्रज्ञान खरेदी, उलट्या क्रमाने.",
"testimonial_heading": "आम्हाला का निवडाल?",
"testimonial_typewriter": "पिके आणि शेतासाठी उत्कृष्ट व्यवस्थापन.",
"testimonial_card1_title": "उत्कृष्ट डॅशबोर्ड",
"testimonial_card1_body": "आमचे डॅशबोर्ड आपली पिकांची आरोग्य स्थिती व खर्च यांची माहिती देतात.",
"testimonial_card2_title": "पिकांवरील रोगाचे भाकीत",
"testimonial_card2_body": "दिसणाऱ्या लक्षणांच्या आधारे संभाव्य रोगांचे भाकीत करा.",
"testimonial_card3_title": "पीक नियोजन",
"testimonial_card3_body": "मागील हंगामाच्या पिकांवरून व वापरलेल्या खतांवरून योग्य पीक निवडा.",
"testimonial_check_out": "पहा"
}
+43
View File
@@ -0,0 +1,43 @@
import React from "react";
const About = () => {
return (
<>
<section className="bg-white py-12 w-full flex justify-center">
<div className="flex flex-col md:flex-row justify-between w-10/12 h-auto">
<div className="w-full md:w-4/5 object-contain flex justify-center items-center">
<img src="/images/calender.png" className="w-full h-auto" alt="" />
</div>
<div className="container mx-auto flex flex-col justify-around h-full w-full md:py-10">
<div className="text-center md:text-start flex flex-col justify-around h-full">
<h2 className="text-xl font-bold mb-4 text-yellow-600">
CUSTOMIZE WITH YOUR SCHEDULE
</h2>
<h1 className="text-2xl md:text-4xl md:font-extrabold font-bold mb-4">
Personalized Professional Online Mentor on Your Schedule
</h1>
<p className="text-base mb-8">
Our scheduling system allows you to select based on free time.
Lorem ipsum demo text for template. Keep track of your students
class and mentoring schedules, and never miss your Session. The
best online class scheduling system with easy accessibility.
Lorem ipsum is a placeholder text commonly used to demonstrate
the visual form
</p>
<div className="flex gap-4 justify-center md:justify-start">
<button
type="button"
className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900"
>
Get started
</button>
</div>
</div>
</div>
</div>
</section>
</>
);
};
export default About;
+60 -56
View File
@@ -1,10 +1,13 @@
import React, { useState, useEffect } from "react"; import React, { useState } from "react";
import { useSelector, useDispatch } from "react-redux"; import { useSelector } from "react-redux";
import { t } from "../../service/translation"; import { useEffect } from "react";
export const HeroSecn = ({ language = "en" }) => { import { Link } from "react-router-dom";
export const HeroSecn = () => {
const user = useSelector((store) => store.user); const user = useSelector((store) => store.user);
const dispatch = useDispatch();
const [isLoggedIn, setLoggedIn] = useState(false); const [isLoggedIn, setLoggedIn] = useState(false);
@@ -22,16 +25,17 @@ export const HeroSecn = ({ language = "en" }) => {
const user = await responce.json(); const user = await responce.json();
dispatch(userSliceActions.addUser(user.data)); dispatch(userSliceActions.addUser(user.data));
}; };
return ( return (
<section className="py-40 w-full flex justify-center text-gray-100"> <section className=" py-40 w-full flex justify-center text-gray-100">
<div className="flex flex-col-reverse md:flex-row justify-between w-10/12 h-auto"> <div className="flex flex-col-reverse md:flex-row justify-between w-10/12 h-auto">
<div className="container mx-auto flex flex-col justify-between h-full w-full"> <div className="container mx-auto flex flex-col justify-between h-full w-full">
<div className="text-center md:text-start flex flex-col justify-around h-full"> <div className="text-center md:text-start flex flex-col justify-around h-full">
<h1 className="text-6xl md:text-6xl md:w-2/3 md:font-extrabold font-bold "> <h1 className="text-6xl md:text-6xl md:w-2/3 md:font-extrabold font-bold ">
{t("hero_one_stop_solution", language)} One stop solution for every farmer's need.
</h1> </h1>
</div> </div>
<button <button
@@ -43,7 +47,7 @@ export const HeroSecn = ({ language = "en" }) => {
<img <img
src="/images/plant.png" src="/images/plant.png"
className="w-full h-auto rounded-3xl shadow-xl" className="w-full h-auto rounded-3xl shadow-xl"
alt={t("hero_plant_alt", language)} alt="plant"
/> />
</div> </div>
</div> </div>
@@ -51,31 +55,34 @@ export const HeroSecn = ({ language = "en" }) => {
); );
}; };
export const CardWithImage = ({ language = "en" }) => { export const CardWithImage = () => {
return ( return (
<div className="max-w-sm rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700"> <div className="max-w-sm rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700">
<a href="#"> <a href="#">
<img <img
className="rounded-t-lg" className="rounded-t-lg"
src="https://i.pinimg.com/736x/07/2b/5f/072b5f6a1630d919ceee1a8569683cf7.jpg" src="https://i.pinimg.com/736x/07/2b/5f/072b5f6a1630d919ceee1a8569683cf7.jpg"
alt={t("card_with_image_alt", language)} alt="plant"
/> />
</a> </a>
<div className="p-6 backdrop-blur-md rounded-b-lg"> <div className="p-6 backdrop-blur-md rounded-b-lg">
<a href="#"> <a href="#">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-white dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-white dark:text-white">
{t("card_with_image_title", language)} High tech, high yields?
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-white dark:text-gray-400"> <p className="mb-3 font-normal text-white dark:text-gray-400">
{t("card_with_image_body", language)} 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.
</p> </p>
<a <a
href="https://www.theguardian.com/world/2024/sep/30/high-tech-high-yields-the-kenyan-farmers-deploying-ai-to-increase-productivity" href="https://www.theguardian.com/world/2024/sep/30/high-tech-high-yields-the-kenyan-farmers-deploying-ai-to-increase-productivity"
target="_blank" target="_blank"
className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl " className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl "
> >
{t("card_with_image_read_more", language)} Read more
<svg <svg
className="rtl:rotate-180 w-3.5 h-3.5 ms-2" className="rtl:rotate-180 w-3.5 h-3.5 ms-2"
aria-hidden="true" aria-hidden="true"
@@ -85,9 +92,9 @@ export const CardWithImage = ({ language = "en" }) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" d="M1 5h12m0 0L9 1m4 4L9 9"
/> />
</svg> </svg>
@@ -97,40 +104,47 @@ export const CardWithImage = ({ language = "en" }) => {
); );
}; };
export const CardOnlyText = ({ headingText, bodyText, href, language = "en" }) => { export const CardOnlyText = (props) => {
return ( return (
<div> <div>
<a <a
href={href} href={props.href}
target="_blank" target="_blank"
className="block max-w-sm p-6 rounded-lg shadow-md backdrop-blur-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700" className="block max-w-sm p-6 rounded-lg shadow-md backdrop-blur-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700"
> >
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white">
{headingText} {" "}
{props.headingText}{" "}
</h5> </h5>
<p className="font-normal text-gray-50 dark:text-gray-400">{bodyText}</p> <p className="font-normal text-gray-50 dark:text-gray-400">
{" "}
{props.bodyText}{" "}
</p>
</a> </a>
</div> </div>
); );
}; };
export const CardWithButton = ({ language = "en" }) => { export const CardWithButton = () => {
return ( return (
<div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700"> <div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700">
<a target="_blank" href="#"> <a target="_blank">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white">
{t("card_with_button_title", language)} Empowering smallholder farmers with AI tools can bolster global food
security
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-gray-50 dark:text-gray-400"> <p className="mb-3 font-normal text-gray-50 dark:text-gray-400">
{t("card_with_button_body", language)} {" "}
AI-powered weather forecasts help rural Indian farmers make informed
planting decisions, reducing debt and boosting savings.
</p> </p>
<a <a
href="https://www.reuters.com/sustainability/land-use-biodiversity/comment-how-empowering-smallholder-farmers-with-ai-tools-can-bolster-global-food-2025-01-10/" href="https://www.reuters.com/sustainability/land-use-biodiversity/comment-how-empowering-smallholder-farmers-with-ai-tools-can-bolster-global-food-2025-01-10/"
target="_blank" target="_blank"
className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl " className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl "
> >
{t("card_with_button_read_more", language)} Read more
<svg <svg
className="rtl:rotate-180 w-3.5 h-3.5 ms-2" className="rtl:rotate-180 w-3.5 h-3.5 ms-2"
aria-hidden="true" aria-hidden="true"
@@ -140,9 +154,9 @@ export const CardWithButton = ({ language = "en" }) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" d="M1 5h12m0 0L9 1m4 4L9 9"
/> />
</svg> </svg>
@@ -151,7 +165,7 @@ export const CardWithButton = ({ language = "en" }) => {
); );
}; };
export const CardWithOnlyImage = ({ language = "en" }) => { export const CardWithOnlyImage = () => {
return ( return (
<div className="w-full max-w-sm bg-white rounded-lg shadow-xl dark:bg-gray-800 dark:border-gray-700"> <div className="w-full max-w-sm bg-white rounded-lg shadow-xl dark:bg-gray-800 dark:border-gray-700">
<a <a
@@ -159,9 +173,9 @@ export const CardWithOnlyImage = ({ language = "en" }) => {
target="_blank" target="_blank"
> >
<img <img
className="rounded-lg" className=" rounded-lg"
src="https://i.pinimg.com/736x/2b/2a/0f/2b2a0f7003bd3e4201573c1189d600de.jpg" src="https://i.pinimg.com/736x/2b/2a/0f/2b2a0f7003bd3e4201573c1189d600de.jpg"
alt={t("card_with_only_image_alt", language)} alt="product image"
/> />
</a> </a>
</div> </div>
@@ -178,34 +192,24 @@ const cards = [
export default cards; export default cards;
export const CardLayout = ({ language = "en" }) => { export const CardLayout = () => {
return ( return (
<div> <div>
<HeroSecn language={language} /> <HeroSecn />
<div className="flex justify-center"> <div className=" flex justify-center">
<div className="flex justify-between py-8 w-5/6 "> <div className=" flex justify-between py-8 w-5/6 ">
<CardWithImage language={language} /> <cardWithImage />
<div className="flex flex-col gap-10 justify-between "> <div className="flex flex-col gap-10 justify-between ">
<CardOnlyText <cardOnlyText />
headingText={t("card_only_text_heading1", language)} <cardWithButton />
bodyText={t("card_only_text_body1", language)}
href="https://example.com/article1"
language={language}
/>
<CardWithButton language={language} />
</div> </div>
<div className="flex flex-col justify-between">
<CardWithOnlyImage language={language} /> <div className=" flex flex-col justify-between">
<CardOnlyText <cardWithOnlyImage />
headingText={t("card_only_text_heading2", language)} <cardOnlyText />
bodyText={t("card_only_text_body2", language)}
href="https://example.com/article2"
language={language}
/>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
); );
}; };
+11 -14
View File
@@ -1,13 +1,6 @@
import React from "react"; import React from "react";
import { t } from "../../service/translation";
import { useOutletContext } from "react-router-dom";
const Customization = (props) => {
// Get language from context if available, else from props, default to "en"
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const Customization = () => {
return ( return (
<> <>
<section <section
@@ -18,20 +11,25 @@ const Customization = (props) => {
<div className="container mx-auto flex flex-col justify-around h-full w-full md:py-10"> <div className="container mx-auto flex flex-col justify-around h-full w-full md:py-10">
<div className="text-center md:text-start flex flex-col justify-around h-full"> <div className="text-center md:text-start flex flex-col justify-around h-full">
<h2 className="text-xl font-bold mb-4 text-yellow-600"> <h2 className="text-xl font-bold mb-4 text-yellow-600">
{t("customization_schedule", language)} CUSTOMIZE WITH YOUR SCHEDULE
</h2> </h2>
<h1 className="text-2xl md:text-4xl md:font-extrabold font-bold mb-4"> <h1 className="text-2xl md:text-4xl md:font-extrabold font-bold mb-4">
{t("customization_tutors_title", language)} Talented and Qualified Tutors to Serve You for Help
</h1> </h1>
<p className="text-base mb-8"> <p className="text-base mb-8">
{t("customization_paragraph", language)} Our scheduling system allows you to select based on free time.
Lorem ipsum demo text for template. Keep track of your students
class and tutoring schedules, and never miss your lectures. The
best online class scheduling system with easy accessibility.
Lorem ipsum is a placeholder text commonly used to demonstrate
the visual form
</p> </p>
<div className="flex gap-4 justify-center md:justify-start"> <div className="flex gap-4 justify-center md:justify-start">
<button <button
type="button" type="button"
className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900" className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900"
> >
{t("customization_get_started", language)} Get started
</button> </button>
</div> </div>
</div> </div>
@@ -40,7 +38,7 @@ const Customization = (props) => {
<img <img
src="/images/interaction2.png" src="/images/interaction2.png"
className="w-full h-auto" className="w-full h-auto"
alt={t("customization_image_alt", language)} alt=""
/> />
</div> </div>
</div> </div>
@@ -50,4 +48,3 @@ const Customization = (props) => {
}; };
export default Customization; export default Customization;
+5 -13
View File
@@ -1,13 +1,6 @@
import React from "react"; import React from "react";
import { t } from "../../service/translation";
import { useOutletContext } from "react-router-dom";
const Footer = (props) => {
// Get language from context if available, else from props, default to "en"
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const Footer = () => {
return ( return (
<> <>
<footer className="text-gray-50"> <footer className="text-gray-50">
@@ -18,10 +11,10 @@ const Footer = (props) => {
<img <img
src="/images/logo.png" src="/images/logo.png"
className="h-9 rounded-full" className="h-9 rounded-full"
alt={t("footer_logo_alt", language)} alt="Logo"
/> />
<span className="self-center text-xl font-bold whitespace-nowrap dark:text-white"> <span className="self-center text-xl font-bold whitespace-nowrap dark:text-white">
{t("footer_brand", language)} Crop Compass
</span> </span>
</a> </a>
</div> </div>
@@ -31,9 +24,9 @@ const Footer = (props) => {
<span className="text-sm text-gray-50 sm:text-center dark:text-gray-400"> <span className="text-sm text-gray-50 sm:text-center dark:text-gray-400">
© 2025{" "} © 2025{" "}
<a href="/" className="hover:underline"> <a href="/" className="hover:underline">
{t("footer_brand", language)} Crop Compass
</a> </a>
. {t("footer_rights_reserved", language)} . All Rights Reserved.
</span> </span>
</div> </div>
</div> </div>
@@ -43,4 +36,3 @@ const Footer = (props) => {
}; };
export default Footer; export default Footer;
+39 -40
View File
@@ -1,24 +1,18 @@
import React from "react"; import React from "react";
import { Link, useOutletContext } from "react-router-dom"; import { Link } from "react-router-dom";
import { t } from "../../service/translation";
const Hero = (props) => {
// Get language from outlet context or props or default to 'en'
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const Hero = () => {
return ( return (
<> <>
<section className="py-12 w-full flex justify-center pt-28 text-gray-100"> <section className=" py-12 w-full flex justify-center pt-28 text-gray-100">
<div className="flex flex-col-reverse md:flex-row justify-between w-10/12 h-auto"> <div className="flex flex-col-reverse md:flex-row justify-between w-10/12 h-auto">
<div className="container mx-auto flex flex-col justify-between h-full w-full"> <div className="container mx-auto flex flex-col justify-between h-full w-full">
<div className="text-center md:text-start flex flex-col justify-around h-full"> <div className="text-center md:text-start flex flex-col justify-around h-full">
<h1 className="text-6xl md:text-6xl md:w-2/3 md:font-extrabold font-bold"> <h1 className="text-6xl md:text-6xl md:w-2/3 md:font-extrabold font-bold">
{t("hero_heading_main", language)} Anything and Everything you Need to know About
</h1> </h1>
<p className="text-2xl font-semibold mb-8 "> <p className="text-2xl font-semibold mb-8 ">
{t("hero_heading_sub", language)} Your crops and their Health!
</p> </p>
</div> </div>
</div> </div>
@@ -26,36 +20,37 @@ const Hero = (props) => {
<img <img
src="/images/plant.png" src="/images/plant.png"
className="w-full h-auto rounded-3xl shadow-xl" className="w-full h-auto rounded-3xl shadow-xl"
alt={t("hero_image_alt", language)} alt="plant"
/> />
</div> </div>
</div> </div>
</section> </section>
<div className="flex justify-center"> <div className=" flex justify-center">
<div className="flex justify-between py-8 w-5/6"> <div className=" flex justify-between py-8 w-5/6 ">
<div className="max-w-sm rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700"> <div className="max-w-sm rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700">
<a href="#"> <a href="#">
<img <img
className="rounded-t-lg" className="rounded-t-lg"
src="/images/plant.png" src="/images/plant.png"
alt={t("hero_card1_image_alt", language)} alt="plant"
/> />
</a> </a>
<div className="p-8 backdrop-blur-md rounded-b-lg"> <div className="p-8 backdrop-blur-md rounded-b-lg">
<a href="#"> <a href="#">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-white dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-white dark:text-white">
{t("hero_card1_title", language)} Noteworthy technology acquisitions 2021
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-white dark:text-gray-400"> <p className="mb-3 font-normal text-white dark:text-gray-400">
{t("hero_card1_body", language)} Here are the biggest enterprise technology acquisitions of 2021
so far, in reverse chronological order.
</p> </p>
<a <a
href="#" href="#"
className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl" className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl "
> >
{t("hero_card1_read_more", language)} Read more
<svg <svg
className="rtl:rotate-180 w-3.5 h-3.5 ms-2" className="rtl:rotate-180 w-3.5 h-3.5 ms-2"
aria-hidden="true" aria-hidden="true"
@@ -65,9 +60,9 @@ const Hero = (props) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" d="M1 5h12m0 0L9 1m4 4L9 9"
/> />
</svg> </svg>
@@ -75,17 +70,18 @@ const Hero = (props) => {
</div> </div>
</div> </div>
<div className="flex flex-col gap-10 justify-between"> <div className="flex flex-col gap-10 justify-between ">
<div> <div>
<a <a
href="#" href="#"
className="block max-w-sm p-6 rounded-lg shadow-md backdrop-blur-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700" className="block max-w-sm p-6 rounded-lg shadow-md backdrop-blur-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700"
> >
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white">
{t("hero_card2_title", language)} Noteworthy technology acquisitions 2021
</h5> </h5>
<p className="font-normal text-gray-50 dark:text-gray-400"> <p className="font-normal text-gray-50 dark:text-gray-400">
{t("hero_card2_body", language)} Here are the biggest enterprise technology acquisitions of
2021 so far, in reverse chronological order.
</p> </p>
</a> </a>
</div> </div>
@@ -93,17 +89,18 @@ const Hero = (props) => {
<div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700"> <div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700">
<a href="#"> <a href="#">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white">
{t("hero_card3_title", language)} Noteworthy technology acquisitions 2021
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-gray-50 dark:text-gray-400"> <p className="mb-3 font-normal text-gray-50 dark:text-gray-400">
{t("hero_card3_body", language)} Here are the biggest enterprise technology acquisitions of 2021
so far, in reverse chronological order.
</p> </p>
<a <a
href="#" href="#"
className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl" className="inline-flex shadow-md backdrop-blur-md bg-gradient-to-tr from-gray-700/20 to-gray-50/20 items-center px-3 py-2 text-sm font-medium text-center text-white rounded-lg hover:backdrop-blur-xl "
> >
{t("hero_card3_read_more", language)} Read more
<svg <svg
className="rtl:rotate-180 w-3.5 h-3.5 ms-2" className="rtl:rotate-180 w-3.5 h-3.5 ms-2"
aria-hidden="true" aria-hidden="true"
@@ -113,9 +110,9 @@ const Hero = (props) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9" d="M1 5h12m0 0L9 1m4 4L9 9"
/> />
</svg> </svg>
@@ -123,13 +120,13 @@ const Hero = (props) => {
</div> </div>
</div> </div>
<div className="flex flex-col justify-between"> <div className=" flex flex-col justify-between">
<div className="w-full max-w-sm bg-white rounded-lg shadow-xl dark:bg-gray-800 dark:border-gray-700"> <div className="w-full max-w-sm bg-white rounded-lg shadow-xl dark:bg-gray-800 dark:border-gray-700">
<a href="#"> <a href="#">
<img <img
className="rounded-lg" className=" rounded-lg"
src="/images/plant.png" src="/images/plant.png"
alt={t("hero_card4_image_alt", language)} alt="product image"
/> />
</a> </a>
</div> </div>
@@ -140,10 +137,11 @@ const Hero = (props) => {
className="block max-w-sm p-6 backdrop-blur-xl rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700" className="block max-w-sm p-6 backdrop-blur-xl rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700"
> >
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-50 dark:text-white">
{t("hero_card5_title", language)} Noteworthy technology acquisitions 2021
</h5> </h5>
<p className="font-normal text-gray-50 dark:text-gray-400"> <p className="font-normal text-gray-50 dark:text-gray-400">
{t("hero_card5_body", language)} Here are the biggest enterprise technology acquisitions of
2021 so far, in reverse chronological order.
</p> </p>
</a> </a>
</div> </div>
@@ -156,3 +154,4 @@ const Hero = (props) => {
export default Hero; export default Hero;
// {grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2}
+33 -27
View File
@@ -10,8 +10,6 @@ import {
} from "./Cards"; } from "./Cards";
import Testimonial from "./Testimonial"; import Testimonial from "./Testimonial";
import Navbar2 from "../../components/Navbar2"; import Navbar2 from "../../components/Navbar2";
import { t } from "../../service/translation";
import { useOutletContext } from "react-router-dom";
const ScrollReveal = ({ children, direction = "left" }) => { const ScrollReveal = ({ children, direction = "left" }) => {
const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 }); const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 });
@@ -35,50 +33,59 @@ const ScrollReveal = ({ children, direction = "left" }) => {
); );
}; };
function Hero2(props) { function Hero2() {
// Get language from context if available, else from props, default to "en" const myRef = document.querySelector(".scrollable-div");
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
return ( return (
<div> <div>
<Navbar2 language={language} /> <Navbar2 />
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<HeroSecn language={language} /> <HeroSecn />
</ScrollReveal> </ScrollReveal>
<Testimonial language={language} /> <Testimonial />
<div className="flex justify-center"> <div className=" flex justify-center">
<div className="flex justify-between py-8 w-5/6 "> <div className=" flex justify-between py-8 w-5/6 ">
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<CardWithImage language={language} /> <CardWithImage />
</ScrollReveal> </ScrollReveal>
<div className="flex flex-col gap-10 justify-between "> <div className="flex flex-col gap-10 justify-between ">
<ScrollReveal direction="up"> <ScrollReveal direction="up">
{" "}
<CardOnlyText <CardOnlyText
headingText={t("hero2_card1_heading", language)} headingText={
bodyText={t("hero2_card1_body", language)} "AI for agriculture: How Indian farmers are harvesting innovation"
href="https://www.weforum.org/impact/ai-for-agriculture-in-india/" }
language={language} bodyText={
/> "Farmers participating in the programme saw a 21% increase in chili yields per acre, a 9% reduction in pesticide use, a 5% decrease in fertilizer usage, and an 8% improvement in unit prices due to quality enhancements."
}
href={
"https://www.weforum.org/impact/ai-for-agriculture-in-india/ "
}
/>{" "}
</ScrollReveal> </ScrollReveal>
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<CardWithButton language={language} /> {" "}
<CardWithButton />{" "}
</ScrollReveal> </ScrollReveal>
</div> </div>
<div className="flex flex-col justify-between"> <div className=" flex flex-col justify-between">
<ScrollReveal direction="up"> <ScrollReveal direction="up">
{" "}
<CardOnlyText <CardOnlyText
headingText={t("hero2_card2_heading", language)} headingText={
bodyText={t("hero2_card2_body", language)} "SugarChain: Blockchain technology meets Agriculture"
href="https://arxiv.org/abs/2301.08405" }
language={language} bodyText={
/> "The use of blockchain technology can help farmers automate processes with high trust, addressing issues like middlemen involvement and ensuring accurate compensation for their products"
}
href={"https://arxiv.org/abs/2301.08405"}
/>{" "}
</ScrollReveal> </ScrollReveal>
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<CardWithOnlyImage language={language} /> {" "}
<CardWithOnlyImage />{" "}
</ScrollReveal> </ScrollReveal>
</div> </div>
</div> </div>
@@ -88,4 +95,3 @@ function Hero2(props) {
} }
export default Hero2; export default Hero2;
+289
View File
@@ -0,0 +1,289 @@
import React from "react";
const Reviews = [
[
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
],
[
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
],
[
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
],
[
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
],
[
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
{
src: "/images/Review1.jpeg",
alt: "Bonnie image",
name: "Bonnie",
occupation: "Student",
review:
"As a student of this online education website, I can confidently say that it has been an incredible experience. The platform is user-friendly and making it easy for me to learn at my own pace.",
},
],
];
const ReviewSection = () => {
return (
<>
<section className="bg-gray-100 py-12">
<div className="container mx-auto">
<div className="text-center">
<h2 className=" text-2xl md:text-4xl font-bold mb-4">OUR TESTIMONIALS</h2>
<h1 className="text-3xl md:text-6xl font-bold mb-4">
What Our Students Say About Us
</h1>
</div>
<div
id="default-carousel"
className="relative w-full"
data-carousel="slide"
>
{/* <!-- Carousel wrapper --> */}
<div className="relative h-64 overflow-hidden rounded-lg md:h-96">
{/* <!-- Item 1 --> */}
{Reviews.map((reviewList) => (
<div
className="hidden duration-700 ease-in-out w-full"
data-carousel-item
>
<div className="flex w-full items-center justify-center h-full gap-8">
{/* Review no 1 */}
{reviewList.map((review) => (
<div className="w-full max-w-sm bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700 md:py-2">
<div className="flex flex-col items-center pb-10 p-2">
<img
className="w-20 h-20 md:w-24 md:h-24 mb-3 rounded-full shadow-lg"
src={`${review.src}`}
alt={`${review.alt}`}
/>
<h5 className="mb-1 text-xl font-medium text-gray-900 dark:text-white">
{review.name}
</h5>
<span className="text-base font-semibold text-gray-500 dark:text-gray-400">
{review.occupation}
</span>
<p className="md:hidden text-sm text-gray-600 text-center">
{review.review.substring(0, 35)}....
</p>
<p className="hidden md:block text-sm text-gray-600 text-center">
{review.review.substring(0,200)}...
</p>
</div>
</div>
))}
</div>
</div>
))}
</div>
{/* <!-- Slider indicators --> */}
<div className="absolute z-30 flex -translate-x-1/2 bottom-5 left-1/2 space-x-3 rtl:space-x-reverse">
<button
type="button"
className="w-3 h-3 rounded-full"
aria-current="true"
aria-label="Slide 1"
data-carousel-slide-to="0"
></button>
<button
type="button"
className="w-3 h-3 rounded-full"
aria-current="false"
aria-label="Slide 2"
data-carousel-slide-to="1"
></button>
<button
type="button"
className="w-3 h-3 rounded-full"
aria-current="false"
aria-label="Slide 3"
data-carousel-slide-to="2"
></button>
<button
type="button"
className="w-3 h-3 rounded-full"
aria-current="false"
aria-label="Slide 4"
data-carousel-slide-to="3"
></button>
<button
type="button"
className="w-3 h-3 rounded-full"
aria-current="false"
aria-label="Slide 5"
data-carousel-slide-to="4"
></button>
</div>
{/* <!-- Slider controls --> */}
<button
type="button"
className="absolute top-0 start-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
data-carousel-prev
>
<span className="inline-flex items-center justify-center w-10 h-10 rounded-full bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
<svg
className="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 6 10"
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M5 1 1 5l4 4"
/>
</svg>
<span className="sr-only">Previous</span>
</span>
</button>
<button
type="button"
className="absolute top-0 end-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
data-carousel-next
>
<span className="inline-flex items-center justify-center w-10 h-10 rounded-full bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
<svg
className="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 6 10"
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m1 9 4-4-4-4"
/>
</svg>
<span className="sr-only">Next</span>
</span>
</button>
</div>
</div>
</section>
</>
);
};
export default ReviewSection;
+179
View File
@@ -0,0 +1,179 @@
import React from "react";
import { MdEngineering } from "react-icons/md";
import { FaLaptopCode } from "react-icons/fa";
import { LiaLanguageSolid } from "react-icons/lia";
import { MdScience } from "react-icons/md";
import { MdHistoryEdu } from "react-icons/md";
import { MdPsychology } from "react-icons/md";
import { CgWebsite } from "react-icons/cg";
import { FaReplyAll } from "react-icons/fa";
const SubjectList = [
{
icon: "FaLaptopCode",
title: "Programming",
},
{
icon: "MdEngineering",
title: "Engineering",
},
{
icon: "LiaLanguageSolid",
title: "Languages",
},
{
icon: "MdScience",
title: "Science",
},
{
icon: "MdHistoryEdu",
title: "History",
},
{
icon: "MdPsychology",
title: "Psychology",
},
{
icon: "CgWebsite",
title: "Web Design",
},
{
icon: "FaReplyAll",
title: "See all",
},
];
const SubjectSection = () => {
return (
<>
<section className="bg-white py-12 flex justify-center">
<div className="w-11/12">
<div className="container mx-auto">
<div className="text-center">
<h2 className="text-xl md:text-4xl font-bold mb-4">
OUR TUTOR SUBJECTS
</h2>
<h1 className="text-4xl md:text-6xl font-bold mb-4">
Find Online Tutor in Any Subject
</h1>
</div>
<div className="grid grid-cols-2 gap-3 md:gap-4 mt-10 md:grid-cols-3 lg:grid-cols-4">
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800 "
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-green-500 bg-green-100 rounded-lg dark:bg-green-800 dark:text-green-200">
<FaLaptopCode className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-sm sm:text-xl font-bold text-black font-sans">
Programming
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-blue-500 bg-blue-100 rounded-lg dark:bg-blue-800 dark:text-blue-200">
<MdEngineering className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-sm sm:text-xl font-bold text-black font-sans">
Engineering
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-pink-500 bg-pink-100 rounded-lg dark:bg-pink-800 dark:text-pink-200">
<LiaLanguageSolid className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
Languages
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-purple-500 bg-purple-100 rounded-lg dark:bg-purple-800 dark:text-purple-200">
<MdScience className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
Science
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-yellow-500 bg-yellow-100 rounded-lg dark:bg-yellow-800 dark:text-yellow-200">
<MdHistoryEdu className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
History
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-red-500 bg-red-100 rounded-lg dark:bg-red-800 dark:text-red-200">
<MdPsychology className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
Psychology
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800 md:hidden lg:flex"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-orange-500 bg-orange-100 rounded-lg dark:bg-orange-800 dark:text-orange-200 ">
<CgWebsite className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
Web Design
</div>
</div>
<div
id="toast-success"
className="flex items-center w-full max-w-xs p-4 mb-4 text-gray-500 bg-white rounded-lg shadow dark:text-gray-400 dark:bg-gray-800 md:hidden lg:flex"
role="alert"
>
<div className="inline-flex items-center justify-center flex-shrink-0 w-8 h-8 md:w-9 md:h-9 text-gray-500 bg-gray-100 rounded-lg dark:bg-gray-800 dark:text-gray-200">
<FaReplyAll className="text-base sm:text-xl" />
<span className="sr-only">Check icon</span>
</div>
<div className="ms-3 text-base sm:text-xl font-bold text-black font-sans">
See all
</div>
</div>
</div>
</div>
</div>
</section>
</>
);
};
export default SubjectSection;
+34 -32
View File
@@ -6,8 +6,6 @@ import { motion } from "framer-motion";
import { useInView } from "react-intersection-observer"; import { useInView } from "react-intersection-observer";
import TypeWriterEffect from "react-typewriter-effect"; import TypeWriterEffect from "react-typewriter-effect";
import cards from "./Cards"; import cards from "./Cards";
import { t } from "../../service/translation";
import { useOutletContext } from "react-router-dom";
const ScrollReveal = ({ children, direction = "left" }) => { const ScrollReveal = ({ children, direction = "left" }) => {
const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.5 }); const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.5 });
@@ -31,22 +29,17 @@ const ScrollReveal = ({ children, direction = "left" }) => {
); );
}; };
const Testimonial = (props) => { const Testimonial = () => {
// Get language from context or props, default to 'en'
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const myRef = document.querySelector(".scrollable-div"); const myRef = document.querySelector(".scrollable-div");
return ( return (
<> <>
<section className="py-12 px-2 md:px-32 text-white"> <section className=" py-12 px-2 md:px-32 text-white">
<div className="container mx-auto min-h-[20]"> <div className="container mx-auto min-h-[20]">
<div className="text-center flex-col justify-center align-middle min-h-full"> <div className="text-center flex-col justify-center align-middle min-h-full">
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<h2 className="text-xl sm:text-4xl font-bold mb-4 drop-shadow-md"> <h2 className="text-xl sm:text-4xl font-bold mb-4 drop-shadow-md">
{t("testimonial_heading", language)} WHY CHOOSE US?
</h2> </h2>
</ScrollReveal> </ScrollReveal>
<ScrollReveal direction="up"> <ScrollReveal direction="up">
@@ -57,30 +50,35 @@ const Testimonial = (props) => {
scrollArea={myRef} scrollArea={myRef}
startDelay={100} startDelay={100}
cursorColor="white" cursorColor="white"
text={t("testimonial_typewriter", language)} text="Unparalled management for crops & farms."
typeSpeed={100} typeSpeed={100}
/> />
</h1> </h1>
</ScrollReveal> </ScrollReveal>
</div> </div>
<div className="flex flex-col sm:flex-row justify-around mt-8 h-auto min-h-[50]"> <div className="flex flex-col sm:flex-row justify-around mt-8 h-auto min-h-[50]">
<ScrollReveal direction="up"> <ScrollReveal direction="up">
<div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700"> <div className="max-w-sm p-6 backdrop-blur-md rounded-lg shadow-md dark:bg-gray-800 dark:border-gray-700">
<img src="/images/dashboard.png" alt="dashboard" className="w-7 h-7" /> <img
src="/images/dashboard.png"
alt="dashboard"
className="w-7 h-7"
></img>
<a href="/user/dashboard/"> <a href="/user/dashboard/">
<h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white">
{t("testimonial_card1_title", language)} Excellent Dashboards
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-gray-50 dark:text-gray-400"> <p className="mb-3 font-normal text-gray-50 dark:text-gray-400">
{t("testimonial_card1_body", language)} Our descriptive dashboards give insights into your crop's
health and keeps track of your burning expenses.
</p> </p>
<a <a
href="#" href="#"
className="inline-flex font-medium items-center text-blue-600 hover:underline" className="inline-flex font-medium items-center text-blue-600 hover:underline"
> >
{t("testimonial_check_out", language)} Check Out
<svg <svg
className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]" className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]"
aria-hidden="true" aria-hidden="true"
@@ -90,9 +88,9 @@ const Testimonial = (props) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778" d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778"
/> />
</svg> </svg>
@@ -105,17 +103,19 @@ const Testimonial = (props) => {
<img src="/images/crops.png" className="w-7 h-7" alt="" /> <img src="/images/crops.png" className="w-7 h-7" alt="" />
<a href="#"> <a href="#">
<h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white">
{t("testimonial_card2_title", language)} {" "}
Crop Disease Prediction{" "}
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-gray-50 dark:text-gray-400"> <p className="mb-3 font-normal text-gray-50 dark:text-gray-400">
{t("testimonial_card2_body", language)} Predict the possible crop diseases based on their shown
symptoms.
</p> </p>
<a <a
href="/ai" href="/ai"
className="inline-flex font-medium items-center text-blue-600 hover:underline" className="inline-flex font-medium items-center text-blue-600 hover:underline"
> >
{t("testimonial_check_out", language)} Check Out
<svg <svg
className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]" className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]"
aria-hidden="true" aria-hidden="true"
@@ -125,9 +125,9 @@ const Testimonial = (props) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778" d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778"
/> />
</svg> </svg>
@@ -140,17 +140,19 @@ const Testimonial = (props) => {
<img src="/images/planner.png" className="w-7 h-7" alt="" /> <img src="/images/planner.png" className="w-7 h-7" alt="" />
<a href="/user/dashboard/monitoring"> <a href="/user/dashboard/monitoring">
<h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white"> <h5 className="mb-2 text-2xl font-semibold tracking-tight text-gray-50 dark:text-white">
{t("testimonial_card3_title", language)} Crop Planner
</h5> </h5>
</a> </a>
<p className="mb-3 font-normal text-gray-50 dark:text-gray-400"> <p className="mb-3 font-normal text-gray-50 dark:text-gray-400">
{t("testimonial_card3_body", language)} Based on previous season's crop and used pertilizers and
pesticides, plan what crops would best suit the present state
of your soil.
</p> </p>
<a <a
href="#" href="#"
className="inline-flex font-medium items-center text-blue-600 hover:underline" className="inline-flex font-medium items-center text-blue-600 hover:underline"
> >
{t("testimonial_check_out", language)} Check Out
<svg <svg
className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]" className="w-3 h-3 ms-2.5 rtl:rotate-[270deg]"
aria-hidden="true" aria-hidden="true"
@@ -160,9 +162,9 @@ const Testimonial = (props) => {
> >
<path <path
stroke="currentColor" stroke="currentColor"
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
strokeWidth="2" stroke-width="2"
d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778" d="M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778"
/> />
</svg> </svg>
+22 -28
View File
@@ -1,20 +1,15 @@
import React, { useRef } from "react"; import React, { useRef } from "react";
import { useDispatch } from "react-redux"; import { useDispatch } from "react-redux";
import { Link, useNavigate, useOutletContext } from "react-router-dom"; import { Link, useNavigate } from "react-router-dom";
import { userSliceActions } from "../../store/userSlice"; import { userSliceActions } from "../../store/userSlice";
import { BACKEND_URL } from "../../constants"; import { BACKEND_URL } from "../../constants";
import { t } from "../../service/translation"; // Adjust path as needed
const LoginPage = () => { const LoginPage = () => {
// Get language from outlet context
const { language } = useOutletContext();
console.log("LoginPage language:", language);
const emailElement = useRef(); const emailElement = useRef();
const passwordElement = useRef(); const passwordElement = useRef();
const navigate = useNavigate(); const navigate = useNavigate();
const dispatch = useDispatch(); const dispatch = useDispatch();
const handleLogin = async (event) => { const handleLogin = async (event) => {
@@ -38,7 +33,7 @@ const LoginPage = () => {
emailElement.current.value = ""; emailElement.current.value = "";
passwordElement.current.value = ""; passwordElement.current.value = "";
if (user.success === true) { if (user.success == true) {
navigate("/"); navigate("/");
} }
}; };
@@ -46,48 +41,48 @@ const LoginPage = () => {
return ( return (
<section className="bg-[url(/images/loginBG.png)] bg-cover font-sans flex flex-col justify-center md:p-5 w-full min-h-screen max-h-screen"> <section className="bg-[url(/images/loginBG.png)] bg-cover font-sans flex flex-col justify-center md:p-5 w-full min-h-screen max-h-screen">
<div className="flex justify-between items-center h-full"> <div className="flex justify-between items-center h-full">
<div className="rounded-lg shadow-md "> <div className=" rounded-lg shadow-md ">
<div className="flex flex-col items-center justify-center h-full "> <div className="flex flex-col items-center justify-center h-full ">
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8"> <h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8">
{t("login_welcome_back", language)} Welcome Back!
</h1> </h1>
</div> </div>
</div> </div>
<div className="backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36"> <div className=" backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36">
<h1 className="text-2xl font-bold text-gray-50 mb-4">{t("login_title", language)}</h1> <h1 className="text-2xl font-bold text-gray-50 mb-4">Login</h1>
<p className="text-gray-100 mb-6"> <p className="text-gray-100 mb-6">
{t("login_subtitle", language)} Welcome back! Please login to your account.
</p> </p>
<form className="space-y-6" onSubmit={handleLogin}> <form className="space-y-6" onSubmit={handleLogin}>
<div> <div>
<label <label
htmlFor="username" for="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
{t("login_email_label", language)} Email
</label> </label>
<input <input
type="email" type="email"
id="username" id="username"
ref={emailElement} ref={emailElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("login_email_placeholder", language)} placeholder="username@gmail.com"
required required
/> />
</div> </div>
<div> <div>
<label <label
htmlFor="password" for="password"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
{t("login_password_label", language)} Password
</label> </label>
<input <input
type="password" type="password"
id="password" id="password"
ref={passwordElement} ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("login_password_placeholder", language)} placeholder="********"
required required
/> />
</div> </div>
@@ -100,34 +95,34 @@ const LoginPage = () => {
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600" className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
/> />
<label <label
htmlFor="remember_me" for="remember_me"
className="ml-2 text-sm font-medium text-gray-100 dark:text-gray-300" className="ml-2 text-sm font-medium text-gray-100 dark:text-gray-300"
> >
{t("login_remember_me", language)} Remember Me
</label> </label>
</div> </div>
<Link <Link
to={"/user/forgetpassword"} to={"/user/forgetpassword"}
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500" className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
> >
{t("login_forgot_password", language)} Forgot Password?
</Link> </Link>
</div> </div>
<div className="flex justify-center"> <div className=" flex justify-center">
<button <button
type="submit" type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800" className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
> >
{t("login_button", language)} Login
</button> </button>
</div> </div>
<p className="text-gray-100 text-center mt-4"> <p className="text-gray-100 text-center mt-4">
{t("login_new_user", language)}{" "} New User?{" "}
<Link <Link
to={"/user/signup"} to={"/user/signup"}
className="text-blue-600 hover:underline" className="text-blue-600 hover:underline"
> >
{t("login_signup", language)} Signup
</Link> </Link>
</p> </p>
</form> </form>
@@ -138,4 +133,3 @@ const LoginPage = () => {
}; };
export default LoginPage; export default LoginPage;
+3 -7
View File
@@ -1,20 +1,16 @@
import React from "react"; import React from "react";
import Navbar2 from "../../components/Navbar2.jsx"; import Navbar2 from "../../components/Navbar2.jsx";
import { Outlet, useOutletContext } from "react-router-dom"; import { Outlet } from "react-router-dom";
import Container from "../../components/Container.jsx"; import Container from "../../components/Container.jsx";
const MainLoginPage = ({ language = "en" }) => { const MainLoginPage = () => {
return ( return (
<> <>
{/* If Navbar2 is used here, pass language */}
<Navbar2 language={language} />
<Container> <Container>
{/* Pass language to Outlet context for nested routes */} <Outlet />
<Outlet context={{ language }} />
</Container> </Container>
</> </>
); );
}; };
export default MainLoginPage; export default MainLoginPage;
+56 -32
View File
@@ -1,14 +1,8 @@
import React, { useRef } from "react"; import React, { useRef } from "react";
import { Link, useNavigate } from "react-router-dom"; import { Link, useNavigate } from "react-router-dom";
import { BACKEND_URL } from "../../constants"; import { BACKEND_URL } from "../../constants";
import { t } from "../../service/translation";
import { useOutletContext } from "react-router-dom";
const SignupPage = (props) => {
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const SignupPage = () => {
const firstNameElement = useRef(); const firstNameElement = useRef();
const lastNameElement = useRef(); const lastNameElement = useRef();
const emailElement = useRef(); const emailElement = useRef();
@@ -52,45 +46,57 @@ const SignupPage = (props) => {
return ( return (
<section className="bg-[url(https://i.pinimg.com/736x/6c/d2/cc/6cd2cc05a7e464a78bdf1124b4ad30f1.jpg)] bg-cover font-sans flex flex-col justify-center min-h-screen max-h-screen"> <section className="bg-[url(https://i.pinimg.com/736x/6c/d2/cc/6cd2cc05a7e464a78bdf1124b4ad30f1.jpg)] bg-cover font-sans flex flex-col justify-center min-h-screen max-h-screen">
<div className="flex justify-between items-center w-full h-full p-5"> <div className="flex justify-between items-center w-full h-full p-5">
{/* <div className="bg-gradient-to-br from-purple-300 to-pink-200 rounded-lg shadow-md min-h-40 object-center md:hidden">
<div className="flex flex-col items-center justify-center h-full relative">
<img
src="/images/background1.jpg"
alt=""
className="absolute order-3 w-full h-full"
/>
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl relative ml-8">
Welcome to Crop Compass
</h1>
</div>
</div> */}
<div className="backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36 h-[95vh]"> <div className="backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36 h-[95vh]">
<h1 className="text-2xl font-bold text-gray-50 mb-4"> <h1 className="text-2xl font-bold text-gray-50 mb-4">
{t("signup_register_heading", language)} Register Your account
</h1> </h1>
<p className="text-gray-100">{t("signup_welcome", language)}</p> <p className="text-gray-100">Welcome to Crop Compass.</p>
<p className="text-gray-100 mb-6"> <p className="text-gray-100 mb-6">
{t("signup_subtitle", language)} Please register your new account.
</p> </p>
<form action="#" className="space-y-6" onSubmit={handleRegisteration}> <form action="#" className="space-y-6" onSubmit={handleRegisteration}>
<div className="flex flex-col gap-5 sm:flex-row"> <div className="flex flex-col gap-5 sm:flex-row">
<div className="w-full"> <div className="w-full">
<label <label
htmlFor="firstName" htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
{t("signup_first_name_label", language)} First Name
</label> </label>
<input <input
type="text" type="text"
id="firstName" id="firstName"
ref={firstNameElement} ref={firstNameElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("signup_first_name_placeholder", language)} placeholder="John"
required required
/> />
</div> </div>
<div className="w-full"> <div className="w-full">
<label <label
htmlFor="LastName" htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
{t("signup_last_name_label", language)} Last Name
</label> </label>
<input <input
type="text" type="text"
id="LastName" id="LastName"
ref={lastNameElement} ref={lastNameElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("signup_last_name_placeholder", language)} placeholder="Doe"
required required
/> />
</div> </div>
@@ -98,17 +104,17 @@ const SignupPage = (props) => {
<div> <div>
<label <label
htmlFor="email" htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
{t("signup_email_label", language)} Email
</label> </label>
<input <input
type="email" type="email"
id="email" id="email"
ref={emailElement} ref={emailElement}
className="bg-gray-50 border border-gray-300 text-black text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-black text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("signup_email_placeholder", language)} placeholder="user@mail.com"
required required
/> />
</div> </div>
@@ -117,14 +123,14 @@ const SignupPage = (props) => {
htmlFor="password" htmlFor="password"
className="block mb-2 text-sm font-medium text-gray-900 dark:text-white" className="block mb-2 text-sm font-medium text-gray-900 dark:text-white"
> >
{t("signup_password_label", language)} Password
</label> </label>
<input <input
type="password" type="password"
id="password" id="password"
ref={passwordElement} ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder={t("signup_password_placeholder", language)} placeholder="At least 6 unique Characters.. "
required required
/> />
</div> </div>
@@ -140,22 +146,29 @@ const SignupPage = (props) => {
htmlFor="remember_me" htmlFor="remember_me"
className="ml-2 text-sm font-medium text-gray-900 dark:text-gray-300" className="ml-2 text-sm font-medium text-gray-900 dark:text-gray-300"
> >
{t("signup_remember_me", language)} Remember Me
</label> </label>
</div> </div>
<a
href="#"
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
></a>
</div> </div>
<div className="flex justify-center"> <div className=" flex justify-center">
<button <button
type="submit" type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800" className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
> >
{t("signup_register_button", language)} Register your Account
</button> </button>
</div> </div>
<p className="text-gray-600 text-center mt-4"> <p className="text-gray-600 text-center mt-4">
{t("signup_already_have_account", language)}{" "} Already have an Account ?{" "}
<Link to={"/user/login"} className="text-blue-600 hover:underline"> <Link
{t("signup_login", language)} to={"/user/login"}
className="text-blue-600 hover:underline"
>
Login
</Link> </Link>
</p> </p>
</form> </form>
@@ -163,15 +176,26 @@ const SignupPage = (props) => {
<div className="rounded-lg shadow-md text-center w-auto"> <div className="rounded-lg shadow-md text-center w-auto">
<div className="flex flex-col items-center justify-center h-full "> <div className="flex flex-col items-center justify-center h-full ">
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8"> <h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8">
{t("signup_journey_heading", language)} Start your Journey
<br />
{t("signup_with", language)}
<br /> <br />
with <br />
Crop Compass Crop Compass
</h1> </h1>
</div> </div>
</div> </div>
{/* <div className=" backdrop-blur-sm rounded-lg shadow-md md:block">
<div className="flex flex-col items-center justify-center h-full relative text-center">
<img
src="/images/background1.jpg"
alt=""
className="absolute order-3 w-full h-full"
/>
<h1 className="text-5xl font-bold text-white mb-4 md:text-5xl lg:text-8xl relative ml-8 text-center">
Welcome to MentorFlux!
</h1>
</div>
</div> */}
</div> </div>
</section> </section>
); );
+9 -21
View File
@@ -1,17 +1,12 @@
import React, { useRef, useState } from "react"; import React, { useRef, useState } from "react";
import { IoIosKey } from "react-icons/io"; import { IoIosKey } from "react-icons/io";
import { Link, useOutletContext } from "react-router-dom"; import { Link } from "react-router-dom";
import { FaArrowLeft } from "react-icons/fa6"; import { FaArrowLeft } from "react-icons/fa6";
import { BACKEND_URL } from "../../constants"; import { BACKEND_URL } from "../../constants";
import { t } from "../../service/translation";
const ForgetPassword = (props) => {
// Get language from context or props, default to 'en'
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const ForgetPassword = () => {
const emailElement = useRef(); const emailElement = useRef();
const [status, setStatus] = useState(false); const [status, setStatus] = useState(false);
const handleForgetPassword = async (event) => { const handleForgetPassword = async (event) => {
@@ -34,18 +29,15 @@ const ForgetPassword = (props) => {
setStatus(true); setStatus(true);
} }
}; };
return ( return (
<div className="w-full h-[78vh] flex justify-center items-center"> <div className="w-full h-[78vh] flex justify-center items-center">
<div> <div className="">
<div className="flex flex-col items-center gap-12"> <div className="flex flex-col items-center gap-12">
<div className="flex flex-col items-center gap-3"> <div className="flex flex-col items-center gap-3">
<IoIosKey className="text-5xl bg-purple-200 p-2 rounded-full text-purple-500" /> <IoIosKey className="text-5xl bg-purple-200 p-2 rounded-full text-purple-500" />
<h2 className="text-3xl font-bold font-sans"> <h2 className="text-3xl font-bold font-sans">Forget Password?</h2>
{t("forget_password_heading", language)}
</h2>
<p className="text-gray-500"> <p className="text-gray-500">
{t("forget_password_subtitle", language)} No worries, we'll send you resent instructions.
</p> </p>
</div> </div>
<form <form
@@ -57,7 +49,7 @@ const ForgetPassword = (props) => {
<input <input
type="email" type="email"
id="email" id="email"
placeholder={t("forget_password_email_placeholder", language)} placeholder="Enter your email"
className="w-full rounded-md border-gray-400 border-2" className="w-full rounded-md border-gray-400 border-2"
ref={emailElement} ref={emailElement}
/> />
@@ -66,17 +58,14 @@ const ForgetPassword = (props) => {
type="submit" type="submit"
className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900" className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900"
> >
{status === false {status === false ? "Send Email" : "Email Sent to your Mail"}
? t("forget_password_send_email", language)
: t("forget_password_email_sent", language)}
</button> </button>
<Link <Link
to={"/user/login"} to={"/user/login"}
className="text-center text-gray-600 inline-flex items-center justify-center gap-2" className="text-center text-gray-600 inline-flex items-center justify-center gap-2"
> >
<FaArrowLeft className="text-lg" />{" "} <FaArrowLeft className="text-lg" /> Back to Login Page
{t("forget_password_back_to_login", language)}
</Link> </Link>
</form> </form>
</div> </div>
@@ -86,4 +75,3 @@ const ForgetPassword = (props) => {
}; };
export default ForgetPassword; export default ForgetPassword;
+78 -79
View File
@@ -1,23 +1,20 @@
import React, { useRef, useState } from "react"; import React, { useRef, useState } from "react";
import { RiLockPasswordFill } from "react-icons/ri"; import { RiLockPasswordFill } from "react-icons/ri";
import { Link, useNavigate, useParams, useOutletContext } from "react-router-dom"; import { Link, useNavigate, useParams } from "react-router-dom";
import { FaArrowLeft } from "react-icons/fa6"; import { FaArrowLeft } from "react-icons/fa6";
import { BACKEND_URL } from "../../constants"; import { BACKEND_URL } from "../../constants";
import { t } from "../../service/translation";
const ResetPassword = (props) => { const ResetPassword = () => {
const [secure, setSecure] = useState(true); const [secure, setSecure] = useState(true);
const newPassworElement = useRef(); const newPassworElement = useRef();
const confirmPassworElement = useRef(); const confirmPassworElement = useRef();
const navigate = useNavigate(); const navigate = useNavigate();
const { token } = useParams(); const { token } = useParams();
// Get language from context or props, default to 'en'
const outletContext = useOutletContext?.();
const language =
(outletContext && outletContext.language) || props.language || "en";
const handleResetPassword = async (event) => { const handleResetPassword = async (event) => {
event.preventDefault(); event.preventDefault();
@@ -44,6 +41,8 @@ const ResetPassword = (props) => {
const data = await responce.json(); const data = await responce.json();
if (data.success === true) { if (data.success === true) {
navigate("/user/login"); navigate("/user/login");
} }
@@ -51,81 +50,81 @@ const ResetPassword = (props) => {
}; };
return ( return (
<div className="w-full h-[78vh] flex justify-center items-center"> <>
<div> <div className="w-full h-[78vh] flex justify-center items-center">
<div className="flex flex-col items-center gap-10"> <div className="">
<div className="flex flex-col items-center gap-3"> <div className="flex flex-col items-center gap-10">
<RiLockPasswordFill className="text-5xl bg-purple-200 p-2 rounded-full text-purple-500" /> <div className="flex flex-col items-center gap-3">
<h2 className="text-3xl font-bold font-sans"> <RiLockPasswordFill className="text-5xl bg-purple-200 p-2 rounded-full text-purple-500" />
{t("reset_password_heading", language)} <h2 className="text-3xl font-bold font-sans">
</h2> Create New Password
<p className="text-gray-500"> </h2>
{t("reset_password_subtitle", language)} <p className="text-gray-500">
</p> Create your new, unique and secure password here.
</p>
</div>
<form
className="flex flex-col w-full gap-5"
onSubmit={handleResetPassword}
>
<div className="flex flex-col gap-2">
<label
htmlFor="passwordNew"
className="text-gray-500 font-semibold"
>
New Password :
</label>
<input
type="password"
id="passwordNew"
ref={newPassworElement}
placeholder="Enter your New Password"
className="w-full rounded-md border-gray-400 border-2"
/>
</div>
<div className="flex flex-col gap-2">
<label
htmlFor="passwordConfirm"
className="text-gray-500 font-semibold"
>
Confirm Password :
</label>
<input
type="password"
id="passwordConfirm"
ref={confirmPassworElement}
placeholder="Enter your Confirm Password"
className="w-full rounded-md border-gray-400 border-2"
/>
</div>
<p
className={`text-red-800 text-sm underline w-96 text-center ${
secure && "hidden"
} `}
>
Password and confirm Password is not same.Please Enter new
password and confirm Password same
</p>
<button
type="submit"
className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900"
>
Reset Password
</button>
<Link
to={"/user/login"}
className="text-center text-gray-600 inline-flex items-center justify-center gap-2"
>
<FaArrowLeft className="text-lg" /> Back to Login Page
</Link>
</form>
</div> </div>
<form
className="flex flex-col w-full gap-5"
onSubmit={handleResetPassword}
>
<div className="flex flex-col gap-2">
<label
htmlFor="passwordNew"
className="text-gray-500 font-semibold"
>
{t("reset_password_new_label", language)}
</label>
<input
type="password"
id="passwordNew"
ref={newPassworElement}
placeholder={t("reset_password_new_placeholder", language)}
className="w-full rounded-md border-gray-400 border-2"
/>
</div>
<div className="flex flex-col gap-2">
<label
htmlFor="passwordConfirm"
className="text-gray-500 font-semibold"
>
{t("reset_password_confirm_label", language)}
</label>
<input
type="password"
id="passwordConfirm"
ref={confirmPassworElement}
placeholder={t("reset_password_confirm_placeholder", language)}
className="w-full rounded-md border-gray-400 border-2"
/>
</div>
<p
className={`text-red-800 text-sm underline w-96 text-center ${
secure && "hidden"
} `}
>
{t("reset_password_error", language)}
</p>
<button
type="submit"
className="focus:outline-none text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-base px-5 py-2.5 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 dark:focus:ring-purple-900"
>
{t("reset_password_button", language)}
</button>
<Link
to={"/user/login"}
className="text-center text-gray-600 inline-flex items-center justify-center gap-2"
>
<FaArrowLeft className="text-lg" />{" "}
{t("reset_password_back_to_login", language)}
</Link>
</form>
</div> </div>
</div> </div>
</div> </>
); );
}; };
export default ResetPassword; export default ResetPassword;
-11
View File
@@ -1,11 +0,0 @@
// src/service/translation.js
import en from '../locales/en.json';
import hi from '../locales/hi.json';
import mr from '../locales/mr.json';
import fr from '../locales/fr.json';
const translations = { en, hi, mr, fr };
export const t = (key, lang = 'en') => {
return translations[lang][key] || key; // Fallback to key if missing
};
+3 -12
View File
@@ -1,16 +1,7 @@
# Crop Compass # Status200
Crop Compass is a centralized management dashboard designed for farmers, enabling them to efficiently oversee their farms while leveraging advanced AI technology for disease identification and more. Bhakti's frontend branch.
--- ---
## Features ⚠️⚠️ DO NOT PUSH TO THIS BRANCH, IT HAS BEEN LOCKED SINCE ALL THE CHANGES ARE MERGED WITH MAIN BRANCH. TO MAKE CHANGES, CREATE A NEW FEATURE BRANCH DERIVED FROM `main` BRANCH AND CREATE A NEW PULL REQUEST. ⚠️⚠️
- Unified dashboard for comprehensive farm management
- Real-time tracking and management of farm operations
- Logging of key activities, including sowing, fertilization, and harvesting
- Financial planning tools with expense and revenue tracking
- AI-powered recommendations and disease detection capabilities
- Utilizes Google Gemini for predictive crop health analysis
---
-156
View File
@@ -1,156 +0,0 @@
# Translation
This is a guide for translation. Thank you for helping us make our platform accessible in more languages!
---
## Table of Contents
- [1. Files to Modify](#1-files-to-modify)
- [2. Step-by-Step Instructions](#2-step-by-step-instructions)
- [3. Translation Key Naming](#3-translation-key-naming)
- [4. Testing Your Translation](#4-testing-your-translation)
- [5. Submitting Your Contribution](#5-submitting-your-contribution)
- [6. Tips for Quality Translations](#6-tips-for-quality-translations)
- [7. FAQ](#7-faq)
---
## 1. Files to Modify
To contribute a new language or update an existing one, you **must** modify the following files:
- **Frontend/src/App.jsx**
Update the language dropdown to include your language.
- **Frontend/src/LanguageSwitcher.jsx**
Add your language to the dropdown options.
- **Frontend/src/locales/lang.json**
(Replace `lang.json` with your language code, e.g. `es.json` for Spanish.)
Add or edit the translation file for your language.
- **Frontend/src/service/translation.js**
Import your language file and register it in the `translations` object.
---
## 2. Step-by-Step Instructions
### **A. Add Your Language to the Dropdown**
#### In `App.jsx`:
```jsx
function LanguageSwitcher({ language, setLanguage }) {
return (
{
setLanguage(e.target.value);
localStorage.setItem("language", e.target.value);
}}
className="absolute top-2 right-2 p-1 rounded border"
aria-label="Select language"
>
English
Hindi (ि)
Marathi (मर)
Français
{/* Add your language here, e.g.: */}
Español
);
}
```
#### In `Frontend/src/LanguageSwitcher.jsx`:
```jsx
const LanguageSwitcher = ({ currentLanguage, onChangeLanguage }) => (
onChangeLanguage(e.target.value)}>
English
Hindi (ि)
Marathi (मर)
French (Français)
{/* Add your language here, e.g.: */}
Español
);
```
---
### **B. Add or Update Your Language File**
- **File location:** `Frontend/src/locales/`
- **File name:** Use your language code, e.g. `es.json` for Spanish.
- **How:**
- Copy `en.json` as a template.
- **Do not change the keys!** Only translate the values.
**Example (`es.json`):**
```json
{
"login_button": "Iniciar sesión",
"signup_heading": "Registrarse",
"...": "..."
}
```
---
### **C. Register Your Language in the Translation Loader**
In `Frontend/src/service/translation.js`:
```js
import en from '../locales/en.json';
import hi from '../locales/hi.json';
import mr from '../locales/mr.json';
import fr from '../locales/fr.json';
import es from '../locales/es.json'; // {
return translations[lang][key] || key; // Fallback to key if missing
};
```
---
## 3. Translation Key Naming
- **Keys** must remain unchanged and in English (snake_case).
- **Only translate the values**.
---
## 4. Testing Your Translation
1. **Switch the app** to your language using the dropdown.
2. **Browse all screens** and ensure all text is translated and displays correctly.
3. If you see any untranslated keys, add them to your language file.
---
## 5. Submitting Your Contribution
- **Commit your changes** to the files listed above.
- **Open a pull request** with a clear title, e.g.
`Add Spanish translation (es.json)` or `Update French translation`.
- **Describe** what you translated or updated in the PR description.
---
## 6. Tips for Quality Translations
- Be concise and clear.
- Use formal or polite forms if unsure.
- Match the tone of the English original.
- Double-check spelling and grammar.
- If unsure about a term, ask or leave a comment in your PR.
---
## 7. FAQ
**Q: What if I see a key in English that isnt in my language file?**
A: Copy it from `en.json` and translate the value.
**Q: Can I add a new key?**
A: Only if you are also updating the code to use it. Otherwise, only translate existing keys.
---
If you have any questions, please ask in the project chat or open an issue.
+5
View File
@@ -0,0 +1,5 @@
{
"dependencies": {
"apexcharts": "^3.46.0"
}
}