Skip to content

Instantly share code, notes, and snippets.

View aditxxml-byte's full-sized avatar

aditxxml-byte

  • Joined May 15, 2026
View GitHub Profile
export default function TopUpStore() { const whatsappNumber = '6283163877588';
const orderNow = (product) => { window.open(https://wa.me/${whatsappNumber}?text=Halo%20admin,%20saya%20mau%20order%20${product},'_blank'); }; const products = [ { name: 'Diamond ML', price: 'Mulai Rp5.000', uid: true }, { name: 'Free Fire', price: 'Mulai Rp3.000', uid: true }, { name: 'PUBG UC', price: 'Mulai Rp10.000', uid: true }, { name: 'Valorant Points', price: 'Mulai Rp15.000', uid: false }, ];
const qrisImage = 'https://upload.wikimedia.org/wikipedia/commons/8/80/QR_code_for_mobile_English_Wikipedia.svg';
return ( <div className="min-h-screen bg-zinc-950 text-white p-6"> <div className="max-w-6xl mx-auto"> <div className="text-center py-12"> <h1 className="text-5xl font-bold mb-4">AXOLTY TOP UP</h1> <p className="text-zinc-400 text-lg"> Fast Process • Trusted • 24 Jam Online </p> </div>
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
{products.map((item, index) => (