feat: make RSS icon opt-in via showRss prop on Window
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user