top of page
Whitewashed Brick_edited_edited_edited_edited.jpg

EQUIPADO CON CABINA

$54,000.00

Screenshot_20250614_020451_Facebook.jpg

Motocarro Rhino Max200 

Motocarro Rhino Max300 

Motocarro Rhino Max200 con Cabina 

Bicicleta Electrica

Whitewashed Brick_edited_edited_edited_edited_edited.jpg

Salvador Angeles

compre mi primer moto aquí. me explicaron todo con paciencia y me dieron confianza, muy buena experiencia."

​Clientes

Motorista con casco

Direccion Tienda

horario de atencion a clientes

Con cita previa  LUNES - VIERNES

9:00 am – 6:00 pm

SABADO

9:00 am – 15:00 pm

DOMINGO

Cerrado

bottom of page
// --- SERVER CODE --- const jwt = require('jsonwebtoken'); const secret = process.env.CHATBOT_IDENTITY_SECRET; // Your chatbase secret key (should be stored as a secret not in the code) const user = await getSignedInUser(); // Get the current user signed in to your site const token = jwt.sign( { user_id: user.id, // Your user's id email: user.email, // User's email stripe_accounts: user.stripe_accounts, // User's stripe accounts for stripe integration // ... other custom attributes }, secret, { expiresIn: '1h' } ); // --- CLIENT CODE --- const token = await getUserToken(); // Get the token from your server window.chatbase('identify', { token }); // identify the user with Chatbase