File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 11import React from "react" ;
22import { useNavigate } from "react-router-dom" ;
33import { useBlogPosts , usePrefetchBlogPost } from "../hooks/useBlog" ;
4+ import { Rss } from "lucide-react" ;
45import PlantPot from "./PlantPot" ;
56
67interface BlogListProps {
@@ -34,9 +35,21 @@ const BlogList: React.FC<BlogListProps> = ({ onPostSelect }) => {
3435 < div className = "min-h-screen py-8" >
3536 < div className = "max-w-6xl mx-auto px-4 sm:px-6 lg:px-8" >
3637 < div className = "text-center mb-12" >
37- < h1 className = "text-xl text-gray-600" >
38- Thoughts, insights, and updates from my journey
39- </ h1 >
38+ < div className = "flex items-center justify-center gap-4 mb-4" >
39+ < h1 className = "text-xl text-gray-600" >
40+ Thoughts, insights, and updates from my journey
41+ </ h1 >
42+ < a
43+ href = "https://blog-api.murray.kiwi/rss"
44+ target = "_blank"
45+ rel = "noopener noreferrer"
46+ className = "inline-flex items-center gap-2 px-3 py-2 bg-orange-500 hover:bg-orange-600 text-white text-sm font-medium rounded-lg transition-colors duration-200"
47+ title = "Subscribe to RSS feed"
48+ >
49+ < Rss className = "w-4 h-4" />
50+ RSS
51+ </ a >
52+ </ div >
4053 </ div >
4154
4255 { loading ? (
You can’t perform that action at this time.
0 commit comments