aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/components/search.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-11 09:15:12 +0530
committerreal-zephex <[email protected]>2024-05-11 09:15:12 +0530
commitb69507f771d09ac07f679c8eabf420e7558f9b7c (patch)
tree92d73713cc03b7bdf3e3f07c0f95b116b0aae121 /src/app/anime/components/search.jsx
parentadjustments to the cache system (diff)
downloaddramalama-b69507f771d09ac07f679c8eabf420e7558f9b7c.tar.xz
dramalama-b69507f771d09ac07f679c8eabf420e7558f9b7c.zip
some minor fixes
Diffstat (limited to 'src/app/anime/components/search.jsx')
-rw-r--r--src/app/anime/components/search.jsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/app/anime/components/search.jsx b/src/app/anime/components/search.jsx
index 7bb22ba..f916217 100644
--- a/src/app/anime/components/search.jsx
+++ b/src/app/anime/components/search.jsx
@@ -2,6 +2,7 @@
import { FaSearch } from "react-icons/fa";
import { useState } from "react";
+import Link from "next/link";
import styles from "../styles/search.module.css";
import SearchResults from "./search_results";
@@ -40,6 +41,11 @@ const SearcBar = () => {
}}
></input>
</div>
+ <Link shallow href={"/"}>
+ <button className={styles.animeHistoryButton}>
+ History
+ </button>
+ </Link>
</section>
{searchResults}
</main>