aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/components
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-29 10:01:52 +0530
committerreal-zephex <[email protected]>2024-05-29 10:01:52 +0530
commit06b2adcd10811b92b079294dbdab65727ff2015b (patch)
tree03205287b4f8fa77b251c6b94bac515db04ef314 /src/app/anime/components
parent✨ feat(series): rewrite series page and drop manga support (diff)
downloaddramalama-06b2adcd10811b92b079294dbdab65727ff2015b.tar.xz
dramalama-06b2adcd10811b92b079294dbdab65727ff2015b.zip
⚡️ perf(deps): upgrade to react 19 and next js 15, add loading screen, drop mangas support
Diffstat (limited to 'src/app/anime/components')
-rw-r--r--src/app/anime/components/search_results.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/anime/components/search_results.jsx b/src/app/anime/components/search_results.jsx
index 2018680..691b276 100644
--- a/src/app/anime/components/search_results.jsx
+++ b/src/app/anime/components/search_results.jsx
@@ -1,8 +1,11 @@
+"use server";
+
import { search_results } from "../data-fetch/request";
import { preFetchAnimeInfo } from "./cacher";
import styles from "../../page.module.css";
-import { Card, CardHeader, CardBody, Link } from "@nextui-org/react";
+import { Card, CardHeader, CardBody } from "@nextui-org/react";
+import Link from "next/link";
import Image from "next/image";
const SearchResults = async (title) => {