diff options
| author | real-zephex <[email protected]> | 2024-05-11 09:15:12 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-05-11 09:15:12 +0530 |
| commit | b69507f771d09ac07f679c8eabf420e7558f9b7c (patch) | |
| tree | 92d73713cc03b7bdf3e3f07c0f95b116b0aae121 /src/app/anime/components/search.jsx | |
| parent | adjustments to the cache system (diff) | |
| download | dramalama-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.jsx | 6 |
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> |