diff --git a/src/config.js b/src/config.js
index 967c5ce..6cf67cc 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,5 +1,5 @@
// src/config.js
-const API_BASE_URL = 'https://api.kedaimaster.com';
+const API_BASE_URL = 'https://dev.api.kedaimaster.com';
export default API_BASE_URL;
diff --git a/src/pages/CafePage.js b/src/pages/CafePage.js
index 5f8712a..b44ac8f 100644
--- a/src/pages/CafePage.js
+++ b/src/pages/CafePage.js
@@ -242,6 +242,7 @@ function CafePage({
shopOwnerId={shopOwnerId}
isSpotifyNeedLogin={isSpotifyNeedLogin}
queue={queue}
+ setModal={setModal}
/>
{
let encodedCouponCode = encodeURIComponent(encryptedCouponCode);
// Construct the URL with the encoded coupon code as a query parameter
- const urlWithCoupon = `https://coupon.kedaimaster.com/coupon?c=${encodedCouponCode}`;
+ const urlWithCoupon = `https://dev.coupon.kedaimaster.com/coupon?c=${encodedCouponCode}`;
// Optionally, set the URL to use with the coupon
setCouponUrl(urlWithCoupon);
diff --git a/src/pages/Join.module.css b/src/pages/Join.module.css
index 0eb5eb6..a7f14e0 100644
--- a/src/pages/Join.module.css
+++ b/src/pages/Join.module.css
@@ -15,6 +15,12 @@
padding: 40px 3px 15px 3px;
}
+.input {
+ width: calc(100% - 10px);
+ border-radius: 6px;
+ font-size: 19px;
+ margin-bottom: 10px;
+}
/* Main Heading */
.mainHeading {
width: 222px;
diff --git a/src/pages/PlayerPrompt.js b/src/pages/PlayerPrompt.js
new file mode 100644
index 0000000..8343514
--- /dev/null
+++ b/src/pages/PlayerPrompt.js
@@ -0,0 +1,31 @@
+// LinktreePage.js
+import React, { useState, useEffect } from 'react';
+import styles from './Join.module.css'; // Import the module.css file
+
+const LinktreePage = ({ handleYes }) => {
+ const [captMessage, setCaptMessage] = useState('');
+ const [descMessage, setDescMessage] = useState('');
+
+ useEffect(() => {
+ const newQueryParams = new URLSearchParams(window.location.search);
+ const r = newQueryParams.get('captMessage');
+ const s = newQueryParams.get('descMessage');
+ if (r) {
+ setCaptMessage(r)
+ setDescMessage(s)
+ }
+ }, []);
+
+ return (
+
+
+
Filter jenis musik
+
Masukkan prompt untuk Gemini AI
+
+
Simpan
+
+
+ );
+};
+
+export default LinktreePage;