// Sections.jsx — Intro, Services, Styles, Process, Reasons, FAQ const { useState: useStateS } = React; function Eyebrow({ children }) { return {children}; } function Intro() { return (
— Studio Note

A finished living room starts with the wall you look at every day.

From clean TV feature walls to full fireplace builds with shelves, lighting, and textured finishes — every wall is custom-designed around your room, your TV, and the way you live.

); } function Services() { const items = [ 'Custom TV media walls', 'Electric fireplace walls', 'Built-in shelves and mantels', 'LED accent lighting', 'Wood slat panels', 'Smooth drywall & textured finishes', 'Stone, plaster, and Roman clay walls', 'TV niches and hidden wiring', 'Custom layouts for any room', ]; return (
— What We Build

What we build,
from frame to finish.

    {items.map((item, i) =>
  • {item}
  • )}

Each wall is custom-designed around your space, TV size, fireplace preference, style direction, and budget.

No templates — every project starts from your room. We handle structural framing, electrical, finishing, painting, texture, lighting, and final detailing in-house.

); } function Styles() { const items = [ { label: 'Clean Modern', desc: 'Smooth drywall finish, centered TV, electric fireplace, simple mantel, minimal shelves.', img: '../../assets/work-fjord-fluted-niches.jpg' }, { label: 'Warm Wood', desc: 'Natural wood slats, floating shelves, soft LED lighting, warmer interior feel.', img: '../../assets/work-pool-view.jpeg' }, { label: 'Stone & Textured', desc: 'Stone-look panels, plaster texture, Roman clay style, stronger feature-wall presence.', img: '../../assets/work-mont-saint-michel.jpg' }, { label: 'Built-in Storage', desc: 'Shelving, cabinets, display areas, practical storage, symmetrical layout.', img: '../../assets/work-peacock-credenza.jpg' }, { label: 'Floating Minimal', desc: 'Simple wall volume, hidden wires, clean alignment, no unnecessary details.', img: '../../assets/work-fjord-fluted-niches.jpg' }, ]; return (
— Design Directions

Five starting points
to imagine your wall.

{items.map((s, i) => (
{String(i+1).padStart(2,'0')} {s.label}

{s.desc}

))}
); } function Process() { const steps = [ { n: '01', title: 'Share Your Space', body: 'Send a photo of your wall, approximate dimensions, TV size, and any inspiration images.' }, { n: '02', title: 'Design & Estimate', body: 'We propose the best layout, materials, fireplace and shelf options, with a clear written estimate.' }, { n: '03', title: 'Build & Install', body: 'We frame, wire, finish, paint or texture, and detail the wall on site — clean and on schedule.' }, { n: '04', title: 'Final Walk-Through', body: 'The wall is cleaned, reviewed together, photographed, and ready to use the same day.' }, ]; return (
— How It Works

A clear path
from first photo
to finished wall.

{steps.map((s, i) => (
{s.n}
{s.title}

{s.body}

))}
); } function Reasons() { const items = [ { title: 'Specialized', body: 'We only build media walls. It\u2019s all we do, and we do it well.' }, { title: 'Design-led', body: 'Layout, proportions, and materials are decided before the first cut.' }, { title: 'Clear scope', body: 'Honest estimates, defined timelines, and a one-year workmanship warranty — no surprises.' }, { title: 'Built for real homes', body: 'Designed around how you actually live, not just how it photographs.' }, ]; return (
— Why LA Media Wall

A specialist studio,
not a contractor.

{items.map((it, i) => (

{it.title}

{it.body}

))}
); } function FAQ() { const [open, setOpen] = useStateS(0); const items = [ { q: 'How much does a custom media wall cost?', a: 'Custom media walls start at $2,000. Final pricing depends on size, fireplace, shelves, lighting, materials, and finish. The fastest way to get an estimate is to send a photo of your wall, approximate measurements, and a few inspiration images.' }, { q: 'Do you help with design?', a: 'Yes. We help with layout, proportions, materials, fireplace and TV placement, shelves, lighting, and overall direction.' }, { q: 'Can you hide wires and prepare the wall for TV mounting?', a: 'Yes — wire management and TV-ready layouts are included on most projects.' }, { q: 'Do you offer a warranty?', a: 'Yes — every install is backed by a one-year workmanship warranty.' }, { q: 'Do you work outside Los Angeles?', a: 'We serve Los Angeles and surrounding Southern California areas. Reach out with your location and we\u2019ll confirm availability.' }, ]; return (
— Frequently Asked

Common questions,
plainly answered.

{items.map((item, i) => (

{item.a}

))}
); } window.Intro = Intro; window.Services = Services; window.Styles = Styles; window.Process = Process; window.Reasons = Reasons; window.FAQ = FAQ;