From a505bb0e5fa818395100fc61bf64099fd6f127d9 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Tue, 5 Nov 2024 02:07:59 +0530 Subject: [PATCH 01/11] chore: add screenshots --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aad5dc2f..10e76bce 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- +
Maxun
@@ -109,6 +109,17 @@ BYOP (Bring Your Own Proxy) lets you connect external proxies to bypass anti-bot # Cloud We offer a managed cloud version to run Maxun without having to manage the infrastructure and extract data at scale. Maxun cloud also deals with anti-bot detection, huge proxy network with automatic proxy rotation, and CAPTCHA solving. If this interests you, [join the cloud waitlist](https://docs.google.com/forms/d/e/1FAIpQLSdbD2uhqC4sbg4eLZ9qrFbyrfkXZ2XsI6dQ0USRCQNZNn5pzg/viewform) as we launch soon. +# Screenshots +![Maxun PH Launch (1)-1-1](https://github.com/user-attachments/assets/d7c75fa2-2bbc-47bb-a5f6-0ee6c162f391) +![Maxun PH Launch (1)-2-1](https://github.com/user-attachments/assets/d85a3ec7-8ce8-4daa-89aa-52d9617e227a) +![Maxun PH Launch (1)-3-1](https://github.com/user-attachments/assets/4bd5a0b4-485d-44f4-a487-edd9afc18b11) +![Maxun PH Launch (1)-4-1](https://github.com/user-attachments/assets/78140675-a6b6-49b2-981f-6a3d9a32b0b9) +![Maxun PH Launch (1)-5-1](https://github.com/user-attachments/assets/d9fe8519-c81c-4e45-92f2-b2939bf24192) +![Maxun PH Launch (1)-6-1](https://github.com/user-attachments/assets/c26e9ae3-c3da-4280-826a-c7cdf913fb93) +![Maxun PH Launch (1)-7-1](https://github.com/user-attachments/assets/fd7196f4-a6dc-4c4c-9c76-fdd93fac8247) +![Maxun PH Launch (1)-8-1](https://github.com/user-attachments/assets/16ee4a71-772a-49ae-a0e5-cb0529519bda) +![Maxun PH Launch (1)-9-1](https://github.com/user-attachments/assets/160f46fa-0357-4c1b-ba50-b4fe64453bb7) + # Note This project is in early stages of development. Your feedback is very important for us - we're actively working to improve the product. Drop anonymous feedback here. From 34055abcc1b17f038ab4a46b604cda8b7f2ab56f Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Tue, 5 Nov 2024 02:11:23 +0530 Subject: [PATCH 02/11] chore: add YT link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 10e76bce..67638748 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ Maxun lets you train a robot in 2 minutes and scrape the web on auto-pilot. Web Website | Discord | Twitter | - Join Maxun Cloud + Join Maxun Cloud | + Watch Tutorials

![maxun_demo](https://github.com/user-attachments/assets/a61ba670-e56a-4ae1-9681-0b4bd6ba9cdc) From c43e56bc17868a95525f2f7e839fd62f5f9ba711 Mon Sep 17 00:00:00 2001 From: Joshua <80618548+joshua111000@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:38:27 +0530 Subject: [PATCH 03/11] chore: remove req.body print --- server/src/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/auth.ts b/server/src/routes/auth.ts index 6766a356..9240cc0c 100644 --- a/server/src/routes/auth.ts +++ b/server/src/routes/auth.ts @@ -15,7 +15,7 @@ interface AuthenticatedRequest extends Request { router.post('/register', async (req, res) => { console.log('Received request at /auth/register'); - console.log('Received body:', req.body); + try { const { email, password } = req.body From 60f79a1afdbe8eee3c9b38968b71252f2ed5e396 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 5 Nov 2024 23:05:23 +0530 Subject: [PATCH 04/11] feat: set margin right to 30px --- src/components/molecules/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index 69fba352..dccc788a 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -74,7 +74,7 @@ export const NavBar: React.FC = ({ recordingName, isRecording }) => alignItems: 'center', borderRadius: '5px', padding: '8px', - marginRight: '10px', + marginRight: '30px', }} > From 0c632af5bf4c5b7ee835227475e2b9c5ead7da0d Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 5 Nov 2024 23:05:50 +0530 Subject: [PATCH 05/11] chore: lint --- src/components/molecules/NavBar.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index dccc788a..88d4091a 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -65,21 +65,21 @@ export const NavBar: React.FC = ({ recordingName, isRecording }) => {!isRecording ? ( <> - + - + Date: Tue, 5 Nov 2024 23:13:23 +0530 Subject: [PATCH 06/11] feat: add key for each text field --- src/components/molecules/RobotSettings.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/molecules/RobotSettings.tsx b/src/components/molecules/RobotSettings.tsx index 98638120..598311fe 100644 --- a/src/components/molecules/RobotSettings.tsx +++ b/src/components/molecules/RobotSettings.tsx @@ -104,6 +104,7 @@ export const RobotSettingsModal = ({ isOpen, handleStart, handleClose, initialSe <> Date: Tue, 5 Nov 2024 23:13:55 +0530 Subject: [PATCH 07/11] feat: check userEmail value to prevent label and text overlap --- src/components/molecules/RobotSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/RobotSettings.tsx b/src/components/molecules/RobotSettings.tsx index 598311fe..ffb7a2d0 100644 --- a/src/components/molecules/RobotSettings.tsx +++ b/src/components/molecules/RobotSettings.tsx @@ -123,7 +123,7 @@ export const RobotSettingsModal = ({ isOpen, handleStart, handleClose, initialSe Date: Tue, 5 Nov 2024 23:22:43 +0530 Subject: [PATCH 08/11] feat: set modalStyle for integration modal --- src/components/molecules/IntegrationSettings.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/IntegrationSettings.tsx b/src/components/molecules/IntegrationSettings.tsx index 1150dd72..20b03ce9 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -113,7 +113,7 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I }, [recordingId]); return ( - +
Integrate with Google Sheet @@ -225,3 +225,15 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I ); }; + +export const modalStyle = { + top: '40%', + left: '50%', + transform: 'translate(-50%, -50%)', + width: '50%', + backgroundColor: 'background.paper', + p: 4, + height:'fit-content', + display:'block', + padding: '20px', + }; From 25c7ac5b9c0c18951805b062ea0b13e39f70a680 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 5 Nov 2024 23:23:20 +0530 Subject: [PATCH 09/11] chore: lint --- src/components/molecules/IntegrationSettings.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/IntegrationSettings.tsx b/src/components/molecules/IntegrationSettings.tsx index 20b03ce9..2abac53f 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -233,7 +233,7 @@ export const modalStyle = { width: '50%', backgroundColor: 'background.paper', p: 4, - height:'fit-content', - display:'block', + height: 'fit-content', + display: 'block', padding: '20px', - }; +}; From dd250717663adcf52ca70d9a7ac1411f58797878 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 5 Nov 2024 23:24:22 +0530 Subject: [PATCH 10/11] feat: remove margin bottom --- src/components/molecules/IntegrationSettings.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/molecules/IntegrationSettings.tsx b/src/components/molecules/IntegrationSettings.tsx index 2abac53f..8db29a7a 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -143,7 +143,6 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I variant="contained" color="primary" onClick={authenticateWithGoogle} - style={{ marginBottom: '15px' }} > Authenticate with Google From 132c6da6a19fc9c3b0c19c738abfb9c8aeeb8faa Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 5 Nov 2024 23:26:04 +0530 Subject: [PATCH 11/11] feat: remove margin --- src/components/molecules/IntegrationSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/IntegrationSettings.tsx b/src/components/molecules/IntegrationSettings.tsx index 8db29a7a..1489994c 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -115,7 +115,7 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I return (
- Integrate with Google Sheet + Integrate with Google Sheet {recording && recording.google_sheet_id ? ( <>