AI Food Safety App மூலம் எளிய வழிமுறைகளில் சுகாதாரத்தை சீராக பராமரிக்க முடியும்!

வாசிக்க நேரம் இல்லையா? செய்தியைக் கேளுங்கள்!;

Update: 2025-07-28 07:10 GMT

ai food safety app

Click the Play button to listen to article


AI Food Safety App - உங்க தட்டுல என்ன இருக்குனு AI சொல்லும்! | NativeNews.in /* CSS Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --nn-primary-blue: #8aa4e7; --nn-accent-red: #f21218; --nn-dark-bg: #1a1a2e; --nn-light-bg: #f5f5f5; --nn-text-dark: #2c3e50; --nn-text-light: #ffffff; --nn-success: #27ae60; --nn-warning: #f39c12; --nn-danger: #e74c3c; --nn-gradient: linear-gradient(135deg, var(--nn-primary-blue) 0%, var(--nn-accent-red) 100%); } /* Dark Mode Support */ @media (prefers-color-scheme: dark) { :root { --nn-light-bg: #2c3e50; --nn-text-dark: #ecf0f1; } } /* Typography */ body { font-family: 'Noto Sans Tamil', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--nn-text-dark); background-color: var(--nn-light-bg); } /* Main Container */ .nn-infographic { max-width: 1200px; margin: 0 auto; padding: 20px; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } /* Hero Section */ .nn-hero { background: var(--nn-gradient); color: var(--nn-text-light); padding: 30px 20px; border-radius: 10px; margin-bottom: 30px; text-align: center; } .nn-hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 10px; font-weight: bold; } .nn-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); opacity: 0.9; } .nn-timestamp { font-size: 0.875rem; opacity: 0.8; margin-top: 10px; } /* Table of Contents */ .nn-toc { background: var(--nn-light-bg); border-left: 4px solid var(--nn-primary-blue); padding: 20px; margin: 30px 0; border-radius: 5px; } .nn-toc h2 { color: var(--nn-primary-blue); margin-bottom: 15px; font-size: 1.25rem; text-align: left; } .nn-toc ul { list-style: none; } .nn-toc li { padding: 8px 0; border-bottom: 1px solid rgba(138, 164, 231, 0.2); } .nn-toc a { color: var(--nn-text-dark); text-decoration: none; display: flex; align-items: center; transition: color 0.3s ease; } .nn-toc a:hover { color: var(--nn-primary-blue); } .nn-toc-icon { margin-right: 10px; color: var(--nn-primary-blue); } /* Key Stats Grid */ .nn-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 40px 0; } .nn-stat-card { background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); padding: 25px; border-radius: 10px; text-align: center; transition: transform 0.3s ease; border: 2px solid transparent; } .nn-stat-card:hover { transform: translateY(-5px); border-color: var(--nn-primary-blue); } .nn-stat-icon { width: 60px; height: 60px; margin: 0 auto 15px; fill: var(--nn-primary-blue); } .nn-stat-number { font-size: 2.5rem; font-weight: bold; color: var(--nn-accent-red); margin-bottom: 5px; } .nn-stat-label { font-size: 1rem; color: var(--nn-text-dark); } /* Progress Bars */ .nn-progress-section { margin: 40px 0; } .nn-progress-item { margin-bottom: 25px; } .nn-progress-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 500; } .nn-progress-bar { background: #e0e0e0; height: 10px; border-radius: 5px; overflow: hidden; position: relative; } .nn-progress-fill { height: 100%; background: var(--nn-gradient); border-radius: 5px; animation: progressGrow 2s ease-out; position: relative; } @keyframes progressGrow { from { width: 0; } } /* Interactive Comparison */ .nn-comparison { margin: 40px 0; background: var(--nn-light-bg); padding: 30px; border-radius: 10px; } .nn-comparison h2 { color: var(--nn-primary-blue); margin-bottom: 20px; text-align: left; } .nn-comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 20px; } .nn-comparison-item { padding: 20px; background: white; border-radius: 8px; border: 2px solid #e0e0e0; } .nn-comparison-item h3 { color: var(--nn-text-dark); margin-bottom: 15px; display: flex; align-items: center; } .nn-comparison-item.before h3 { color: var(--nn-danger); } .nn-comparison-item.after h3 { color: var(--nn-success); } /* Features List */ .nn-features { margin: 40px 0; } .nn-features h2 { color: var(--nn-primary-blue); margin-bottom: 20px; text-align: left; } .nn-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; } .nn-feature-card { background: white; border: 2px solid var(--nn-primary-blue); border-radius: 10px; padding: 20px; transition: all 0.3s ease; } .nn-feature-card:hover { background: var(--nn-primary-blue); color: white; transform: translateY(-5px); } .nn-feature-icon { font-size: 2rem; margin-bottom: 10px; } .nn-feature-title { font-weight: bold; margin-bottom: 10px; } /* Call to Action */ .nn-cta { background: var(--nn-gradient); color: white; padding: 40px 20px; border-radius: 10px; text-align: center; margin: 40px 0; } .nn-cta h2 { font-size: 2rem; margin-bottom: 20px; } .nn-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; } .nn-cta-button { background: white; color: var(--nn-accent-red); padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; } .nn-cta-button:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Social Share */ .nn-social-share { margin: 40px 0; text-align: center; } .nn-social-share h3 { margin-bottom: 20px; color: var(--nn-text-dark); } .nn-social-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; } .nn-social-button { padding: 10px 20px; border-radius: 25px; text-decoration: none; color: white; font-weight: 500; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .nn-social-button.whatsapp { background: #25d366; } .nn-social-button.facebook { background: #1877f2; } .nn-social-button.twitter { background: #1da1f2; } .nn-social-button:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Source Attribution */ .nn-sources { background: var(--nn-light-bg); padding: 20px; border-radius: 8px; margin: 40px 0; } .nn-sources h3 { color: var(--nn-text-dark); margin-bottom: 15px; } .nn-sources ul { list-style: none; } .nn-sources li { padding: 8px 0; border-bottom: 1px solid #e0e0e0; } .nn-sources a { color: var(--nn-primary-blue); text-decoration: none; } .nn-sources a:hover { text-decoration: underline; } /* Related Articles */ .nn-related { margin: 40px 0; } .nn-related h3 { color: var(--nn-primary-blue); margin-bottom: 20px; text-align: left; } .nn-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; } .nn-related-item { background: white; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; transition: all 0.3s ease; text-decoration: none; color: var(--nn-text-dark); } .nn-related-item:hover { border-color: var(--nn-primary-blue); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* Responsive Design */ @media (max-width: 768px) { .nn-infographic { padding: 10px; } .nn-hero { padding: 20px 15px; } .nn-comparison-grid { grid-template-columns: 1fr; gap: 20px; } .nn-stats-grid { grid-template-columns: 1fr; } .nn-cta-buttons { flex-direction: column; align-items: center; } .nn-social-buttons { flex-direction: column; align-items: center; } } /* Print Styles */ @media print { .nn-social-share, .nn-related { display: none; } .nn-infographic { box-shadow: none; } } /* Accessibility */ .nn-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; } /* Animation Support Check */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }

🍽️🤖 AI Food Safety App - உங்க தட்டுல என்ன இருக்குனு AI சொல்லும்!

Street food-ஆ hotel food-ஆ? Hygiene check பண்ற AI app வந்துடுச்சு - உங்க phone camera-வே food inspector ஆக்கிடும்!

5
Seconds-ல Result
70%
Complaints குறைஞ்சது
100%
Free Download
3
Cities-ல Beta Testing

📱 AI Analysis செயல்முறை

Visual Analysis 95%
Temperature Check 88%
Kitchen Hygiene Score 92%
Crowdsourced Data Accuracy 85%

⚖️ AI App வருவதற்கு முன் vs பின்

❌ முன்பு

  • 😰 Food poisoning பயம்
  • 🤔 Hotel hygiene தெரியாது
  • 💸 Hospital செலவு
  • 📉 Productivity loss
  • 🎲 Risk எடுத்துதான் சாப்பிடணும்

✅ இப்போது

  • 😊 Confident-ஆ சாப்பிடலாம்
  • 📊 Instant hygiene score
  • 💪 Health protection
  • 📈 Better productivity
  • 🛡️ AI-powered safety

🏪 Tamil Nadu Special Features

🏖️
Beach Vendor Verification

Marina beach sundal uncle-கள் AI verified badge வாங்கலாம்

🏨
Famous Hotels Integration

Annapoorna, Murugan Idli Kadai already testing

📱
QR Code Scanning

Vendor hygiene certificate instant verify

🗣️
Tamil Voice Support

"இது சாப்பிடலாமா?" - கேளுங்க, AI பதில் சொல்லும்

🍛
Regional Food Database

Chettinad, Kongu special dishes support

🎓
Student Special

College canteen rating system by JKKN students

🎯 Ready to Make Your Food Safe?

Beta testing Chennai, Coimbatore, Madurai-ல நடக்குது. App launch soon!

🔗 தகவல் ஆதாரங்கள்

  • MIT AI Research Lab - Food Safety Initiative
  • IIT Madras - AI for Indian Street Food Project
  • JKKN - Student Food Safety Research
  • Jicate Solutions - Enterprise Implementation Partner
  • Chennai Corporation - Street Vendor Database


Tags:    

Similar News