Two Brothers with a Vision

My brother and I have always shared a dream of starting our own business, focusing on building computer systems that deliver real value—no scams, no cutting corners, just high-quality performance and reliability. In an industry where we've seen too many products fall short of what consumers deserve, we're committed to creating systems that people can trust. Our goal is to provide high-quality consumer products that not only meet expectations but exceed them, bringing transparency and excellence back to the market.

My brother and I have always shared a dream of starting our own business, focusing on building computer systems that deliver real value—no scams, no cutting corners, just high-quality performance and reliability. In an industry where we've seen too many products fall short of what consumers deserve, we're committed to creating systems that people can trust. Our goal is to provide high-quality consumer products that not only meet expectations but exceed them, bringing transparency and excellence back to the market.

Supported by:

Meet the systems

Down below our 3 main systems are shown: costum pc's can be applied for here:

pHaNtom

€825

  • GPU: RTX3050
  • CPU: Ryzen 5 4500 
  • RAM: DRR4 16GB
  • ROM: 1TB SSD

TITAN

€1325

  • GPU: RTX3060Ti
  • CPU: Ryzen 5 5600 
  • RAM: DRR4 32GB
  • ROM: 2TB SSD

Listen to the best episodes

const express = require('express'); const mollieClient = require('@mollie/api-client')({ apiKey: 'your_mollie_api_key' }); const app = express(); app.use(express.json()); app.post('/create-payment', async (req, res) => { const { computer, name, email } = req.body; let price; switch (computer) { case 'cheap-pc': price = 849.00; break; case 'mid-range-pc': price = 1249.00; break; case 'high-end-pc': price = 1849.00; break; case 'ultra-pc': price = 4549.00; break; default: return res.status(400).json({ error: 'Invalid computer model selected' }); } try { const payment = await mollieClient.payments.create({ amount: { value: price.toFixed(2), currency: 'EUR' }, description: `${computer} purchase by ${name}`, redirectUrl: 'https://yourwebsite.com/payment-success', webhookUrl: 'https://yourwebsite.com/webhook', metadata: { customerName: name, customerEmail: email, product: computer, }, }); res.json({ paymentUrl: payment.getPaymentUrl() }); } catch (err) { console.error(err); res.status(500).json({ error: 'Payment failed' }); } }); app.listen(3000, () => { console.log('Server is running on port 3000'); });