diff --git a/app/page.tsx b/app/page.tsx
index 279f781..fea8809 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -26,11 +26,8 @@ export default function Home() {
{/* Title and description */}
Elden scribE
Easily create messages for Elden Ring
- {/* Add spacer that fills extra vertical space between these */}
-
-
-
-
+ {/* Spacer to fill extra vertical space */}
+
{/* Container for search text and input box */}
Search:
@@ -43,7 +40,8 @@ export default function Home() {
onChange={handleInputChange} // Call handleInputChange function when text changes
/>
-
+ {/* Spacer to fill extra vertical space */}
+
{/* Container for buttons */}
{/* Container for buttons with vertical scroll */}
@@ -54,4 +52,5 @@ export default function Home() {
);
+
}