// Brands page — brand partners across AMG destinations
const BRAND_LIST = [
// Fashion & Lifestyle
'Adidas', 'ALDO', 'Arrow', 'Arvind', 'Bata', 'BIBA', 'Blackberrys', 'Brand Loot',
'Crocs', 'Flying Machine', 'Jockey', 'Levi\'s', 'Liberty', 'Max', 'Numero Uno',
'Octave', 'Puma', 'Red Tape', 'Skechers', 'Spykar', 'Under Armour', 'U.S. Polo Assn.',
'VIP', 'W', 'Wildcraft',
// Accessories & Footwear
'American Tourister', 'Carlton', 'Carrera', 'Lavie', 'The Bags Store', 'Tissot',
// Beauty & Wellness
'Bath & Body Works', 'Faces Canada', 'Mamaearth', 'Sugar',
// Food & Beverage
'Barista', 'Baskin-Robbins', 'Chicago Pizza', 'Domino\'s', 'House of Candy',
'The House of Kebab', 'Starbucks', 'Subway', 'Sweet Garden', 'Uncle Jack\'s',
// Entertainment & Lifestyle
'Cinepolis', 'Lenskart', 'Metro',
];
const BRAND_CATEGORIES = [
{
label: 'Fashion & Lifestyle',
icon: 'ShoppingBag',
brands: [
'Adidas', 'ALDO', 'Arrow', 'Arvind', 'Bata', 'BIBA', 'Blackberrys', 'Brand Loot',
'Crocs', 'Flying Machine', 'Jockey', 'Levi\'s', 'Liberty', 'Max', 'Numero Uno',
'Octave', 'Puma', 'Red Tape', 'Skechers', 'Spykar', 'Under Armour', 'U.S. Polo Assn.',
'VIP', 'W', 'Wildcraft',
],
},
{
label: 'Accessories & Footwear',
icon: 'Watch',
brands: ['American Tourister', 'Carlton', 'Carrera', 'Lavie', 'The Bags Store', 'Tissot'],
},
{
label: 'Beauty & Wellness',
icon: 'Sparkles',
brands: ['Bath & Body Works', 'Faces Canada', 'Mamaearth', 'Sugar'],
},
{
label: 'Food & Beverage',
icon: 'Utensils',
brands: [
'Barista', 'Baskin-Robbins', 'Chicago Pizza', 'Domino\'s', 'House of Candy',
'The House of Kebab', 'Starbucks', 'Subway', 'Sweet Garden', 'Uncle Jack\'s',
],
},
{
label: 'Entertainment & Lifestyle',
icon: 'Clapperboard',
brands: ['Cinepolis', 'Lenskart', 'Metro'],
},
];
const BRAND_LOGOS = {
'Adidas': 'adidas.jpg',
'ALDO': 'aldo.jpg',
'Arrow': 'arrow.jpg',
'Arvind': 'arvind.jpg',
'Bata': 'bata.jpg',
'BIBA': 'biba.jpg',
'Blackberrys': 'blackberry.jpg',
'Brand Loot': 'brand loot.jpg',
'Crocs': 'crocs.jpg',
'Flying Machine': 'flying machine.jpg',
'Jockey': 'jockey.jpg',
"Levi's": 'levis.jpg',
'Liberty': 'liberty.jpg',
'Max': 'max.jpg',
'Numero Uno': 'Numero uno.jpg',
'Octave': 'octave.jpg',
'Puma': 'puma.jpg',
'Red Tape': 'redtape.jpg',
'Skechers': 'skchers.jpg',
'Spykar': 'spykar.jpg',
'Under Armour': 'under armour.jpg',
'U.S. Polo Assn.': 'us polo.jpg',
'VIP': 'vip.jpg',
'W': 'w.jpg',
'Wildcraft': 'wildcraft.jpg',
'American Tourister': 'american tourister.jpg',
'Carlton': 'carlton london.jpg',
'Carrera': 'carrera.jpg',
'Lavie': 'lavie.jpg',
'The Bags Store': 'the bag store.jpg',
'Tissot': 'tissot.jpg',
'Bath & Body Works': 'bath body works.jpg',
'Faces Canada': 'faces canada.jpg',
'Mamaearth': 'mama earth.jpg',
'Sugar': 'sugar.jpg',
'Barista': 'barista.jpg',
'Baskin-Robbins': 'baskin robin.jpg',
'Chicago Pizza': 'chicago pizza.jpg',
"Domino's": 'dominos.jpg',
'House of Candy': 'house of candy.jpg',
'Starbucks': 'starbucks.jpg',
'Subway': 'subway.jpg',
"Uncle Jack's": 'uncle jacks.jpg',
'Cinepolis': 'cinepolis.jpg',
'Lenskart': 'lenskart.jpg',
'Metro': 'metro.jpg',
};
const BrandTile = ({ name }) => {
const file = BRAND_LOGOS[name];
const src = file ? `/images/logos/brand%20logos/${encodeURIComponent(file)}` : null;
return (
{src
?
:
{name}
}
);
};
function BrandsPage({ setPage }) {
useReveal();
return (
{/* ── Hero ── */}
Portfolio · Brands
{BRAND_LIST.length}+ brand partners
The brandsthat chose us.
{ setPage('contact'); window.scrollTo(0,0); }}
className="btn rounded-full bg-bone-50 text-ink-950 px-5 py-3 text-[12px] font-medium tracking-wide hover:bg-accent-soft inline-flex items-center gap-2"
>
Brand leasing enquiry
{/* ── Upcoming & Signed Brands ── */}
{/* ── Brand grid by category ── */}
{BRAND_CATEGORIES.map((cat) => (
{cat.label}
{cat.brands.map((b) => )}
))}
{/* ── Become a brand partner ── */}
Want your brand{' '}
in the mix?
We're actively curating brand partners for Palm Marina and One AMG. If you're a brand looking for a Ludhiana address with footfall, demographics, and a management team that understands retail — let's talk.
{ setPage('contact'); window.scrollTo(0,0); }}
className="btn rounded-full bg-bone-50 text-ink-950 px-6 py-3.5 text-[13px] font-medium tracking-wide hover:bg-accent-soft inline-flex items-center gap-2"
>
Leasing enquiry
WhatsApp
);
}
window.BrandsPage = BrandsPage;