diff --git a/app/page.tsx b/app/page.tsx
index 16123fc..279f781 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -26,6 +26,11 @@ export default function Home() {
{/* Title and description */}
Elden scribE
Easily create messages for Elden Ring
+ {/* Add spacer that fills extra vertical space between these */}
+
+
+
+
{/* Container for search text and input box */}
Search:
@@ -38,9 +43,15 @@ export default function Home() {
onChange={handleInputChange} // Call handleInputChange function when text changes
/>
-
- {/* Buttons will be dynamically added here */}
-
+
+ {/* Container for buttons */}
+
+ {/* Container for buttons with vertical scroll */}
+
+ {/* Buttons will be dynamically added here */}
+
+
);
+
}
diff --git a/app/search.tsx b/app/search.tsx
index c4314e3..b0c66c0 100644
--- a/app/search.tsx
+++ b/app/search.tsx
@@ -33,7 +33,8 @@ const Button: React.FC = ({ onClick, title, textContent }) => {
borderRadius: "9999px" // Make the button pill-shaped
}}
>
- {textContent}
+ {textContent}
+ {title} {/* Add smaller text for category */}
);
};