Skip to content

Cart

Your cart is empty

Location

export default function StoreLocationPage() { const jsonLd = { '@context': 'https://schema.org', '@type': 'ClothingStore', name: 'Trevi Collection – Showroom', image: 'https://www.trevicollection.com/cdn/shop/files/trevi-hero.jpg?v=1', telephone: '+1-213-431-2672', address: { '@type': 'PostalAddress', streetAddress: '1119 San Julian Street', addressLocality: 'Los Angeles', addressRegion: 'CA', postalCode: '90015', addressCountry: 'US' }, url: 'https://www.trevicollection.com/pages/store-location', openingHoursSpecification: [ { '@type': 'OpeningHoursSpecification', dayOfWeek: ['Monday','Tuesday','Wednesday','Thursday','Friday'], opens: '09:00', closes: '17:00' }, { '@type': 'OpeningHoursSpecification', dayOfWeek: 'Saturday', opens: '10:00', closes: '16:00' } ] } const hours = [ { day: 'Monday', hours: '9:00 AM – 5:00 PM' }, { day: 'Tuesday', hours: '9:00 AM – 5:00 PM' }, { day: 'Wednesday', hours: '9:00 AM – 5:00 PM' }, { day: 'Thursday', hours: '9:00 AM – 5:00 PM' }, { day: 'Friday', hours: '9:00 AM – 5:00 PM' }, { day: 'Saturday', hours: 'By appointment' }, { day: 'Sunday', hours: 'Closed' }, ] return (
{/* SEO */} {/* Hero */}

Los Angeles Fashion District

Visit Our Showroom

Experience craftsmanship, fabric, and fit up close. Book a retailer consultation or stop by during business hours.

{/* Content */}
{/* Address & Hours */}

Showroom

1119 San Julian Street, Los Angeles, CA 90015

Hours

    {hours.map((h) => (
  • {h.day} {h.hours}
  • ))}

Saturday appointments available. Call or email to reserve.

{/* Contact Cards */}

Email

cs@trevicollection.com

Wholesale inquiries, lookbooks, and appointments.

Phone

(213) 431-2672

Mon–Fri, 9:00 AM – 5:00 PM (PT).

{/* Social */}
{/* Map / Gallery */}
Beaded evening gowns on display Showroom racks at Trevi Collection
{/* Why Visit */}

Why Visit

    {[ 'Inspect fabrics, finishing, and fit in person', 'Browse exclusive and limited-run styles', 'Personalized merchandising advice for your boutique', 'Preview upcoming collections and seasonal colors', ].map((item) => (
  • {item}
  • ))}
{/* CTA */}

Ready to stock Trevi?

Schedule a private walkthrough of our collection. We’ll help you curate the perfect assortment for your customers.

{/* Footer note */}

Parking: Street and paid-lot parking available nearby. Please arrive 5–10 minutes early for appointments.

) }