diff --git a/app/page.tsx b/app/page.tsx
index e519acb..533b25b 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -25,7 +25,7 @@ export default function Home() {
-
+
{allPostsData.length > 0 ? (
{allPostsData.map(({ id, date, title, wip }) => (
@@ -63,12 +63,6 @@ export default function Home() {
)}
-
-
);
}
diff --git a/components/window.tsx b/components/window.tsx
index 97e1b87..da4633b 100644
--- a/components/window.tsx
+++ b/components/window.tsx
@@ -47,6 +47,7 @@ interface WindowProps {
children: React.ReactNode;
className?: string;
showProgress?: boolean;
+ showRss?: boolean;
}
export default function Window({
@@ -54,6 +55,7 @@ export default function Window({
children,
className = "",
showProgress = false,
+ showRss = false,
}: WindowProps) {
return (
{title}
-
-
-
+ {showRss && (
+
+
+
+ )}