File size: 829 Bytes
9fed9f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import React from 'react';
const Footer = () => {
return (
<footer className="app-footer">
<div className="footer-content">
<div className="footer-section">
<h3>About</h3>
<p>A tool for generating English-Hindi vocabulary with AI assistance</p>
</div>
<div className="footer-section">
<h3>Developer</h3>
<p>Arvind Maurya</p>
</div>
<div className="footer-section">
<h3>Powered By</h3>
<div className="tech-stack">
<span>React</span>
<span>TypeScript</span>
<span>Gemini AI</span>
</div>
</div>
</div>
<div className="footer-bottom">
<p>© 2024 Arvind Maurya. All rights reserved</p>
</div>
</footer>
);
};
export default Footer; |