aboutsummaryrefslogtreecommitdiff
path: root/src/app/info/page.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
committerreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
commitb1f4f412059760d85f531c3d6e2ee626c9002d28 (patch)
treedbbb23233b9388170d52fb67de6c5f48a16c30d7 /src/app/info/page.jsx
parentfixed a minor bug (diff)
downloaddramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.tar.xz
dramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.zip
fixes: change the file extension to .jsx and fixed the video player sizes for tablets
Diffstat (limited to 'src/app/info/page.jsx')
-rw-r--r--src/app/info/page.jsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/app/info/page.jsx b/src/app/info/page.jsx
new file mode 100644
index 0000000..9004ade
--- /dev/null
+++ b/src/app/info/page.jsx
@@ -0,0 +1,11 @@
+import "./info.css";
+
+export default function Info() {
+ return (
+ <div className="infoPageContainer">
+ <p>
+ This is the anime info page. This page will display information about the queried anime when anime id is passed along the url.
+ </p>
+ </div>
+ );
+}