diff options
| author | Factiven <[email protected]> | 2023-04-17 22:00:15 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-17 22:00:15 +0700 |
| commit | 828324584faf0590829dcf8ead692d91b953e93f (patch) | |
| tree | 4292ba1fba525c226bab2af0809d409609a2ebfd | |
| parent | update 1.0 (diff) | |
| download | moopa-828324584faf0590829dcf8ead692d91b953e93f.tar.xz moopa-828324584faf0590829dcf8ead692d91b953e93f.zip | |
7th fixes
| -rw-r--r-- | components/navbar.js | 6 | ||||
| -rw-r--r-- | pages/anime/[...id].js | 2 | ||||
| -rw-r--r-- | pages/index.js | 4 | ||||
| -rw-r--r-- | pages/profile/[user].js | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/components/navbar.js b/components/navbar.js index 8dfd9e5..74e67e7 100644 --- a/components/navbar.js +++ b/components/navbar.js @@ -127,7 +127,7 @@ function Navbar(props) { </button> <button className="group flex gap-[1.5px] flex-col items-center "> <div> - <Link href="/search"> + <Link href="/search/anime"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" @@ -145,7 +145,7 @@ function Navbar(props) { </Link> </div> <Link - href="/search" + href="/search/anime" className="font-karla font-bold text-[#8BA0B2] group-hover:text-action" > search @@ -240,7 +240,7 @@ function Navbar(props) { </li> <li> <Link - href="/search" + href="/search/anime" className="p-2 transition-all duration-100 hover:text-orange-600" > search diff --git a/pages/anime/[...id].js b/pages/anime/[...id].js index b7e222d..e2665ea 100644 --- a/pages/anime/[...id].js +++ b/pages/anime/[...id].js @@ -468,7 +468,7 @@ export default function Himitsu({ 404 </h1> <p className="text-4xl font-semibold">{`> Woops.. I think we don't have that Anime :(`}</p> - <Link className="pt-10 text-2xl" href="/search"> + <Link className="pt-10 text-2xl" href="/search/anime"> Return to search </Link> </div> diff --git a/pages/index.js b/pages/index.js index 83c907b..b97b3a2 100644 --- a/pages/index.js +++ b/pages/index.js @@ -261,7 +261,7 @@ export default function Home({ detail, populars, sessions }) { </button> <button className="group flex gap-[1.5px] flex-col items-center "> <div> - <Link href="/search"> + <Link href="/search/anime"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" @@ -279,7 +279,7 @@ export default function Home({ detail, populars, sessions }) { </Link> </div> <Link - href="/search" + href="/search/anime" className="font-karla font-bold text-[#8BA0B2] group-hover:text-action" > search diff --git a/pages/profile/[user].js b/pages/profile/[user].js index bd80a6c..54314db 100644 --- a/pages/profile/[user].js +++ b/pages/profile/[user].js @@ -268,7 +268,7 @@ export default function MyList({ media, sessions, user, time }) { </p> )} <Link - href="/search" + href="/search/anime" className="flex gap-2 text-sm ring-1 ring-action p-2 rounded-lg font-karla" > <svg |