Joey / business_config.py
LucidMinds3ye's picture
Create business_config.py
6e497e0 verified
# ==================== BUSINESS CONFIGURATION ====================
# Customize this section for your specific business
BUSINESS_CONFIG = {
"name": "TechGadget Store",
"industry": "technology retail",
"hours": "9AM-6PM Monday to Saturday",
"products": "smartphones, laptops, tablets, and accessories",
"services": "device repair, technical support, setup assistance, and trade-ins",
"address": "123 Main Street, Tech City",
"phone": "(555) 123-4567",
"email": "[email protected]",
"return_policy": "30-day money-back guarantee on all products",
"shipping": "Free shipping on orders over $50",
"values": "Quality products, excellent customer service, and competitive prices",
"key_people": "John Smith (CEO), Sarah Johnson (Head of Sales), Mike Chen (Tech Support Lead)",
"payment_methods": "credit cards, debit cards, PayPal, and Apple Pay"
}
# Product database
PRODUCTS = {
"smartphone": {
"basic": {
"name": "BasicPhone",
"price": "$199",
"features": "6.1\" display, 128GB storage, 12MP camera"
},
"pro": {
"name": "ProPhone X",
"price": "$899",
"features": "6.7\" OLED, 512GB, 5G, 48MP camera"
}
},
"laptop": {
"standard": {
"name": "WorkBook Lite",
"price": "$699",
"features": "15\" display, 8GB RAM, 256GB SSD, Intel i5 processor"
},
"premium": {
"name": "WorkBook Pro",
"price": "$1499",
"features": "16\" display, 16GB RAM, 1TB SSD, Intel i7 processor, dedicated graphics"
}
},
"tablet": {
"standard": {
"name": "TabLight",
"price": "$329",
"features": "10.2\" display, 64GB storage, all-day battery"
},
"pro": {
"name": "TabPro",
"price": "$799",
"features": "11\" OLED, 256GB, Apple Pencil support, 5G connectivity"
}
}
}
# Services database
SERVICES = {
"repair": {
"screen": {"price": "$99", "time": "2-3 hours"},
"battery": {"price": "$79", "time": "1-2 hours"},
"water_damage": {"price": "$149", "time": "24-48 hours"}
},
"support": {
"setup": {"price": "$49", "time": "1 hour"},
"data_transfer": {"price": "$39", "time": "1 hour"},
"troubleshooting": {"price": "$29", "time": "30 minutes"}
},
"trade-in": {
"phone": {"estimate": "Up to $500", "process": "Bring your device for evaluation"},
"laptop": {"estimate": "Up to $800", "process": "Schedule an appointment for assessment"},
"tablet": {"estimate": "Up to $300", "process": "Visit our store with your device"}
}
}