Posts

Showing posts from May, 2026
`

sesaji

import React, { useState, useEffect, useMemo } from 'react'; import { Lock, LayoutGrid, Package, FileText, Printer, Bluetooth, Trash, Plus, Minus, ShoppingCart, Coffee, TrendingUp, DollarSign, LogOut, Check, Save } from 'lucide-react'; // --- STYLES INJECTION --- const injectStyles = () => { if (document.getElementById('sesaji-styles')) return; const style = document.createElement('style'); style.id = 'sesaji-styles'; style.innerHTML = ` body { background-color: #F8FAF8; color: #4A5D45; font-family: 'Inter', sans-serif; height: 100vh; overflow: hidden; margin: 0; } .cute-card { background: white; border-radius: 32px; border: 1px solid #E0E7DE; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: all 0.2s; } .receipt-card { background: white; border-radius: 40px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border: 1px solid #E0E7DE; } .btn-primary { background-color: #4A5D45; color: white; f...