Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Social Icons in Footer #301

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 30 additions & 3 deletions client/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Link } from "react-router-dom";
import { Github, Twitter, Linkedin } from "lucide-react"; // Import icons from lucide-react

export default function Footer() {
return (
Expand All @@ -17,9 +18,35 @@ export default function Footer() {
Privacy Policy
</Link>
</div>
<p className="text-muted-foreground">
<span className="text-yellow-600">MIT</span> License
</p>
<div className="flex space-x-4">
<a
href="https://github.com/kom-senapati"
target="_blank"
rel="noopener noreferrer"
aria-label="GitHub"
className="text-muted-foreground hover:text-gray-600"
>
<Github size={20} />
</a>
<a
href="https://x.com/kom_senapati"
target="_blank"
rel="noopener noreferrer"
aria-label="Twitter"
className="text-muted-foreground hover:text-blue-500"
>
<Twitter size={20} />
</a>
<a
href="https://linkedin.com/in/kom-senapati"
target="_blank"
rel="noopener noreferrer"
aria-label="LinkedIn"
className="text-muted-foreground hover:text-blue-600"
>
<Linkedin size={20} />
</a>
</div>
</footer>
);
}