// 1. BRAND IDENTITY
const BRAND_CONFIG = {
name: “Silk Road Express”,
tagline: “Worldwide Shipping. Personal Service.”,
domain: “silkroadxpress.com”,
// Colors: Consider deep blue (#1e3a8a) for charcoal, warm gray for taupe, gold (#c9a959) for accents
colors: { charcoal: ‘#1a1a1a’, cream: ‘#f8f5f0’, gold: ‘#c9a959’, taupe: ‘#d8cfc4’, stone: ‘#a8a29e’ }
};
// 2. SAMPLE DATA – SERVICES (Replaces “Artworks” from gallery example)
const SERVICE_ITEMS = [
{
id: 1,
title: “Worldwide Express Delivery”,
category: “international”,
description: “Reliable, efficient global shipping via DHL & UPS. We handle import/export, customs, and offer insurance, live tracking, and White Glove packaging for any size shipment[citation:2].”,
icon: “✈️”,
details: “Signature delivery, customs assistance, full insurance options.”
},
{
id: 2,
title: “US Address for Online Shopping”,
category: “convenience”,
description: “Shop from any US retailer. We provide a dedicated US address, consolidate your packages, and ship them cost-effectively to Israel[citation:2][citation:4].”,
icon: “🛒”,
details: “Package consolidation, secure US facility, flexible delivery.”
},
{
id: 3,
title: “Personal Mail Center”,
category: “convenience”,
description: “A subscription for a permanent Jerusalem address. Includes secure storage, a 10% shipping discount, and home delivery options. Never miss a package[citation:2].”,
icon: “📬”,
details: “Permanent address, 10% discount, secure storage.”
},
{
id: 4,
title: “Jerusalem Home Delivery”,
category: “local”,
description: “Need a package picked up and brought to your door within Jerusalem? Reach out, and we’ll handle it[citation:2][citation:4].”,
icon: “🏠”,
details: “Local pickup and drop-off, point-to-point service.”
}
// Add more services up to 12 items as needed
];
// 3. CONTACT & OPERATIONAL INFO
const CONTACT_INFO = {
address: “Hillel St 13, Jerusalem, 9423001, Israel[citation:1][citation:4]”,
email: “contact@silkroadxpress.com”, // Example email
phone: “+972 (0)2 000-0000”, // Example phone
hours: {
weekdays: “Sunday – Thursday: 9:30 AM – 6:00 PM”,
friday: “Closed”,
saturday: “Closed”
},
quoteCta: “Get A Free Shipping Quote”
};