Skip to content

Commit

Permalink
Enhance Footer UI
Browse files Browse the repository at this point in the history
* enhance the footer

* fix the linking of the icones

* fix
  • Loading branch information
TornovDutta authored Oct 16, 2024
1 parent 59c918e commit 4db3301
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 19 deletions.
54 changes: 50 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"dotenv": "^16.4.5",
"firebase": "^10.14.1",
"react": "^18.2.0",
Expand Down
52 changes: 37 additions & 15 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,45 @@
import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faGithub, faLinkedin, faTwitter } from "@fortawesome/free-brands-svg-icons";

const Footer = () => {
return (
<div className="bg-slate-800 text-white flex flex-col justify-center items-center w-full">
<div className="logo font-bold text-white text-2xl">
<span className="text-green-600"> &lt;</span>
<span>Pass</span>
<span className="text-green-600">OP/&gt;</span>
</div>
<div className="flex justify-center items-center">
{" "}
Created with <img
className="w-7 mx-2"
src="icons/heart.png"
alt=""
/>{" "}
by jinx{" "}
<footer className="bg-gray-900 text-white py-6 mt-10">
<div className="container mx-auto flex flex-col items-center justify-between text-center">
{/* Logo and Brief Info */}
<div className="logo font-bold text-white text-2xl mb-3 flex items-center justify-center">
<span className="text-green-500">&lt;</span>
<span className="tracking-wide">Pass</span>
<span className="text-green-500">OP/&gt;</span>
</div>

<p className="text-gray-400 text-sm mb-4 max-w-xl">
PassOP is your trusted password manager, providing secure and easy access to manage your passwords.
Keep your data safe and never lose track of your credentials again.
</p>

{/* Social Media Links */}
<div className="flex space-x-6 mb-6">
<a href="https://github.com/jinx-vi-0/passop" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<FontAwesomeIcon icon={faGithub} className="text-2xl hover:text-green-400 transition duration-300" />
</a>
<a href="" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<FontAwesomeIcon icon={faLinkedin} className="text-2xl hover:text-green-400 transition duration-300" />
</a>
<a href="" target="_blank" rel="noopener noreferrer" aria-label="Twitter">
<FontAwesomeIcon icon={faTwitter} className="text-2xl hover:text-green-400 transition duration-300" />
</a>
</div>

{/* Footer Bottom Info */}
<div className="text-center text-gray-500 text-sm mt-4">
<p>© 2024 PassOP. All rights reserved.</p>
<p className="mt-2">
<a href="#" className="hover:text-green-400">Privacy Policy</a> | <a href="#" className="hover:text-green-400">Terms of Service</a> | <a href="#" className="hover:text-green-400">Contact Us</a>
</p>
</div>
</div>
</div>
</footer>
);
};

Expand Down

0 comments on commit 4db3301

Please sign in to comment.