aboutsummaryrefslogtreecommitdiff
path: root/src/app/info/buttons.js
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-15 21:23:45 +0530
committerreal-zephex <[email protected]>2024-03-15 21:23:45 +0530
commitaabc2fa63b70079a62cb6ffb47c1542e6c73286d (patch)
treefe17c37c518ce0e6688f6b9dae3ba1468d49bcda /src/app/info/buttons.js
parentminor fix: changed the website title (diff)
downloaddramalama-aabc2fa63b70079a62cb6ffb47c1542e6c73286d.tar.xz
dramalama-aabc2fa63b70079a62cb6ffb47c1542e6c73286d.zip
features: added anime and pretty much completed it. only search functionality is left to add
Diffstat (limited to 'src/app/info/buttons.js')
-rw-r--r--src/app/info/buttons.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/app/info/buttons.js b/src/app/info/buttons.js
new file mode 100644
index 0000000..8f041a8
--- /dev/null
+++ b/src/app/info/buttons.js
@@ -0,0 +1,13 @@
+"use client"
+
+import Link from "next/link";
+export default function CreateButton({ a }) {
+
+ return (
+ <Link href={`/video/${a.id}`}>
+ <button className="dramaButton">
+ {a.number}
+ </button>
+ </Link>
+ );
+} \ No newline at end of file