fix(): Misc UI formatting fixes

* Fixes footer CSS
* Fixes URL example
* Increase URL timeout
This commit is contained in:
Elia el Lazkani 2025-01-02 16:02:29 +01:00
parent 1887be54e5
commit 8d234b0587
2 changed files with 6 additions and 3 deletions

View file

@ -49,7 +49,7 @@ export default function URLShortener() {
setTimeout(() => {
setShowInput(false);
}, 10000);
}, 900000);
} catch (error) {
console.log(error);
}
@ -82,7 +82,7 @@ export default function URLShortener() {
<form className="url-input" onSubmit={ShortenIt}>
<input
type="text"
placeholder="www.example.com"
placeholder="https://www.example.com"
aria-label="URL input field"
value={url}
onChange={(e) => setUrl(e.target.value)}

View file

@ -1,5 +1,8 @@
.footer {
width: 100%;
height: 200px;
height: 100px;
background-color: var(--color-secondary);
display: flex;
justify-content: center;
align-items: center;
}