aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-21 20:17:46 +0530
committerreal-zephex <[email protected]>2024-03-21 20:17:46 +0530
commitbd43309e99085e38417929de8ad2422c379af64a (patch)
tree4ce5964e341aeabf511cebf3175d503f4da3bb5e /src
parentfix: trying to fix the endpoints (diff)
downloaddramalama-bd43309e99085e38417929de8ad2422c379af64a.tar.xz
dramalama-bd43309e99085e38417929de8ad2422c379af64a.zip
took down the anime page
Diffstat (limited to 'src')
-rw-r--r--src/app/anime/anime.css8
-rw-r--r--src/app/anime/page.js14
2 files changed, 8 insertions, 14 deletions
diff --git a/src/app/anime/anime.css b/src/app/anime/anime.css
index 9c24d95..451b73a 100644
--- a/src/app/anime/anime.css
+++ b/src/app/anime/anime.css
@@ -5,4 +5,12 @@
flex-direction: column;
justify-content: center;
align-items: center;
+}
+
+.maintainenceContainer {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ height: 80dvh;
} \ No newline at end of file
diff --git a/src/app/anime/page.js b/src/app/anime/page.js
deleted file mode 100644
index 759619d..0000000
--- a/src/app/anime/page.js
+++ /dev/null
@@ -1,14 +0,0 @@
-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>
- );
-}