diff --git a/Frontend/src/components/Footer.jsx b/Frontend/src/components/Footer.jsx index 77811da..a20d327 100644 --- a/Frontend/src/components/Footer.jsx +++ b/Frontend/src/components/Footer.jsx @@ -35,6 +35,7 @@ const Footer = () => { { + const features = [ + { + icon: FaHeartbeat, + title: 'Our Mission', + description: 'To deliver healthcare solutions that ensure better patient care through efficiency and technological advancement.', + }, + { + icon: FaCogs, + title: 'Our Vision', + description: 'We aim to revolutionize healthcare management by developing tools that healthcare professionals can rely on.', + }, + { + icon: FaUsers, + title: 'Our Values', + description: 'We are dedicated to providing innovative, reliable, and user-friendly solutions for healthcare providers worldwide.', + }, + ]; + return ( -
-

About Us

-

- Hospital Management System (HMS) is a cutting-edge solution designed to streamline healthcare operations and improve patient care. -

-

- Our mission is to revolutionize healthcare management by providing innovative technology solutions that enhance efficiency, reduce errors, and ultimately improve patient outcomes. -

-

- With a team of experienced healthcare professionals and software engineers, we are committed to developing and maintaining a system that meets the evolving needs of modern healthcare facilities. -

+
+ {/* Hero Section */} +
+

About Us

+

+ Hospital Management System (HMS) is a cutting-edge solution designed to streamline healthcare operations and improve patient care. +

+

+ Our mission is to revolutionize healthcare management through innovative technology solutions that enhance efficiency, reduce errors, and improve patient outcomes. +

+
+ + {/* Mission, Vision, Values Section */} +
+ {features.map((feature, index) => ( + + +

+ {feature.title} +

+

+ {feature.description} +

+
+ ))} +
+ + {/* Team Section */} +
+

Meet Our Team

+
+ + Team Member +

Dr. John Doe

+

Chief Medical Officer

+
+ + Team Member +

Jane Smith

+

Lead Software Engineer

+
+ {/* Add more team members as needed */} +
+
); }; diff --git a/Frontend/src/pages/ContactUs.jsx b/Frontend/src/pages/ContactUs.jsx index 4f49222..d37c858 100644 --- a/Frontend/src/pages/ContactUs.jsx +++ b/Frontend/src/pages/ContactUs.jsx @@ -1,21 +1,93 @@ -import React from 'react'; +import React, { useState } from 'react'; const ContactUs = () => { + const [formData, setFormData] = useState({ + name: '', + email: '', + message: '', + }); + + const handleChange = (e) => { + setFormData({ + ...formData, + [e.target.name]: e.target.value, + }); + }; + + const handleSubmit = (e) => { + e.preventDefault(); + // Handle form submission logic here, like sending data to an API + console.log(formData); + alert('Thank you for reaching out! We will get back to you soon.'); + }; + return (
-

Contact Us

-

We'd love to hear from you. Please feel free to reach out with any questions or concerns.

-
-

Email

-

support@hms.com

-
-
-

Phone

-

+1 (555) 123-4567

+

Contact Us

+ +
+ {/* Contact Information Cards */} +
+

Email

+

support@hms.com

+
+
+

Phone

+

+1 (555) 123-4567

+
+
+

Address

+

123 Healthcare Street, Medical City, HC 12345

+
-
-

Address

-

123 Healthcare Street, Medical City, HC 12345

+ + {/* Contact Form */} +
+

Get in Touch

+
+
+ + +
+
+ + +
+
+ + +
+ +
); diff --git a/package-lock.json b/package-lock.json index d309abe..a594b70 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2,5 +2,75 @@ "name": "Hospital-Management", "lockfileVersion": 3, "requires": true, - "packages": {} + "packages": { + "": { + "dependencies": { + "herotofu-react": "^1.0.6" + } + }, + "node_modules/herotofu-react": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/herotofu-react/-/herotofu-react-1.0.6.tgz", + "integrity": "sha512-q1vNErrQVVoGxi5erpc5IMJ+QtIqiSDL2KF1G45uf69bsmxSKXyIKUFf/vVq9NaYAww4rNIL0TWfupSvb+MOEQ==", + "engines": { + "node": ">=16.20.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19", + "react-dom": "^16.8.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "peer": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "peer": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + } + } + } } diff --git a/package.json b/package.json new file mode 100644 index 0000000..9a11c4f --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "herotofu-react": "^1.0.6" + } +}