import React, { useState, useEffect } from 'react'; import { Box, Typography, Grid, Paper } from '@mui/material'; import {Navbar} from '../pages/LandingPage'; import MedicalServicesIcon from '@mui/icons-material/MedicalServices'; import LocalHospitalIcon from '@mui/icons-material/LocalHospital'; import CodeIcon from '@mui/icons-material/Code'; const About: React.FC = () => { const [user, setUser] = useState(null); useEffect(() => { const storedUser = localStorage.getItem('user'); if (storedUser) { setUser(JSON.parse(storedUser)); } }, []); return ( {/* Navigation bar */} {/* Main content with top padding to account for fixed Navbar */} About Health AI Your Personal AI Assistant for Tailored Drug Recommendations {/* Project Information Card */} About the Project Health AI is a cutting-edge application specializing in providing personalized drug recommendations and medication advice. Leveraging advanced AI models like Mistral and powerful search technologies such as Elasticsearch, our platform delivers accurate, context-aware suggestions for both over-the-counter and prescription medications. Our backend utilizes modern technologies including Flask, PostgreSQL, and Google OAuth, ensuring robust security and reliable performance. We also use long-term conversational memory to continuously enhance our responses. {/* How It Works Card */} How It Works Our system uses natural language processing to understand user queries and extract key details such as age, medical history, and medication type. It then employs vector search techniques to fetch the most relevant information from a comprehensive drug database, ensuring precise recommendations. Health AI validates its responses to guarantee consistency and reliability, making it an innovative solution for personalized healthcare guidance. {/* Future Enhancements Card */} What's Next? We are continuously improving Health AI by integrating additional data sources and refining our AI algorithms. Future enhancements include real-time drug interaction checks, comprehensive patient monitoring, and seamless integration with healthcare providers. Stay tuned for more exciting updates and features as we strive to make healthcare more accessible and efficient. {/* Footer */} © {new Date().getFullYear()} Health AI. All rights reserved. ); }; export default About;