Spaces:
Sleeping
Sleeping
Create business_config.py
Browse files- business_config.py +77 -0
business_config.py
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ==================== BUSINESS CONFIGURATION ====================
|
2 |
+
# Customize this section for your specific business
|
3 |
+
|
4 |
+
BUSINESS_CONFIG = {
|
5 |
+
"name": "TechGadget Store",
|
6 |
+
"industry": "technology retail",
|
7 |
+
"hours": "9AM-6PM Monday to Saturday",
|
8 |
+
"products": "smartphones, laptops, tablets, and accessories",
|
9 |
+
"services": "device repair, technical support, setup assistance, and trade-ins",
|
10 |
+
"address": "123 Main Street, Tech City",
|
11 |
+
"phone": "(555) 123-4567",
|
12 |
+
"email": "[email protected]",
|
13 |
+
"return_policy": "30-day money-back guarantee on all products",
|
14 |
+
"shipping": "Free shipping on orders over $50",
|
15 |
+
"values": "Quality products, excellent customer service, and competitive prices",
|
16 |
+
"key_people": "John Smith (CEO), Sarah Johnson (Head of Sales), Mike Chen (Tech Support Lead)",
|
17 |
+
"payment_methods": "credit cards, debit cards, PayPal, and Apple Pay"
|
18 |
+
}
|
19 |
+
|
20 |
+
# Product database
|
21 |
+
PRODUCTS = {
|
22 |
+
"smartphone": {
|
23 |
+
"basic": {
|
24 |
+
"name": "BasicPhone",
|
25 |
+
"price": "$199",
|
26 |
+
"features": "6.1\" display, 128GB storage, 12MP camera"
|
27 |
+
},
|
28 |
+
"pro": {
|
29 |
+
"name": "ProPhone X",
|
30 |
+
"price": "$899",
|
31 |
+
"features": "6.7\" OLED, 512GB, 5G, 48MP camera"
|
32 |
+
}
|
33 |
+
},
|
34 |
+
"laptop": {
|
35 |
+
"standard": {
|
36 |
+
"name": "WorkBook Lite",
|
37 |
+
"price": "$699",
|
38 |
+
"features": "15\" display, 8GB RAM, 256GB SSD, Intel i5 processor"
|
39 |
+
},
|
40 |
+
"premium": {
|
41 |
+
"name": "WorkBook Pro",
|
42 |
+
"price": "$1499",
|
43 |
+
"features": "16\" display, 16GB RAM, 1TB SSD, Intel i7 processor, dedicated graphics"
|
44 |
+
}
|
45 |
+
},
|
46 |
+
"tablet": {
|
47 |
+
"standard": {
|
48 |
+
"name": "TabLight",
|
49 |
+
"price": "$329",
|
50 |
+
"features": "10.2\" display, 64GB storage, all-day battery"
|
51 |
+
},
|
52 |
+
"pro": {
|
53 |
+
"name": "TabPro",
|
54 |
+
"price": "$799",
|
55 |
+
"features": "11\" OLED, 256GB, Apple Pencil support, 5G connectivity"
|
56 |
+
}
|
57 |
+
}
|
58 |
+
}
|
59 |
+
|
60 |
+
# Services database
|
61 |
+
SERVICES = {
|
62 |
+
"repair": {
|
63 |
+
"screen": {"price": "$99", "time": "2-3 hours"},
|
64 |
+
"battery": {"price": "$79", "time": "1-2 hours"},
|
65 |
+
"water_damage": {"price": "$149", "time": "24-48 hours"}
|
66 |
+
},
|
67 |
+
"support": {
|
68 |
+
"setup": {"price": "$49", "time": "1 hour"},
|
69 |
+
"data_transfer": {"price": "$39", "time": "1 hour"},
|
70 |
+
"troubleshooting": {"price": "$29", "time": "30 minutes"}
|
71 |
+
},
|
72 |
+
"trade-in": {
|
73 |
+
"phone": {"estimate": "Up to $500", "process": "Bring your device for evaluation"},
|
74 |
+
"laptop": {"estimate": "Up to $800", "process": "Schedule an appointment for assessment"},
|
75 |
+
"tablet": {"estimate": "Up to $300", "process": "Visit our store with your device"}
|
76 |
+
}
|
77 |
+
}
|