feat: make RSS icon opt-in via showRss prop on Window

This commit is contained in:
2026-03-31 02:45:29 +02:00
parent 893760751b
commit 2d6239d2d9
2 changed files with 8 additions and 10 deletions

View File

@@ -25,7 +25,7 @@ export default function Home() {
</header>
<section>
<Window title="Blog Posts">
<Window title="Blog Posts" showRss>
{allPostsData.length > 0 ? (
<ul className="space-y-4">
{allPostsData.map(({ id, date, title, wip }) => (
@@ -63,12 +63,6 @@ export default function Home() {
)}
</Window>
</section>
<section>
<Window title="About this site">
<Badges />
</Window>
</section>
</div>
);
}