Skip to content
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
11 changes: 10 additions & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Github, Linkedin } from 'lucide-react';
import { Github, Linkedin, Rss } from 'lucide-react';

const Footer = () => {
return (
Expand Down Expand Up @@ -39,6 +39,15 @@ const Footer = () => {
>
<Linkedin className="w-5 h-5" />
</a>

<a
href="/rss.xml"
className="p-3 border border-neutral-800 bg-neutral-900 text-neutral-500 hover:text-white hover:border-white hover:bg-white/10 transition-all duration-200"
aria-label="RSS feed"
title="RSS feed"
>
<Rss className="w-5 h-5" />
</a>
</div>
</div>

Expand Down
Loading