aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/page.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-21 23:33:39 +0530
committerreal-zephex <[email protected]>2024-03-21 23:33:39 +0530
commit500ee5433bd6eabf27fc9723a04cfb6a4e66624a (patch)
treefd4b929a6375fa62b816e901b47230759ba4c2f4 /src/app/anime/page.jsx
parentughh (diff)
downloaddramalama-500ee5433bd6eabf27fc9723a04cfb6a4e66624a.tar.xz
dramalama-500ee5433bd6eabf27fc9723a04cfb6a4e66624a.zip
fix: fixed the backed. let's hope it stays this way
Diffstat (limited to 'src/app/anime/page.jsx')
-rw-r--r--src/app/anime/page.jsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/app/anime/page.jsx b/src/app/anime/page.jsx
new file mode 100644
index 0000000..759619d
--- /dev/null
+++ b/src/app/anime/page.jsx
@@ -0,0 +1,14 @@
+import "./anime.css";
+import Trending from "../top-airing/page";
+import Releases from "../recent/page";
+import Input from "../search/page";
+
+export default async function Anime() {
+ return (
+ <div>
+ <Input />
+ <Trending />
+ <Releases />
+ </div>
+ );
+}