// mapemedia homepage — part A: trust band, why-grid, case-study preview, services. // ── Trust band ──────────────────────────────────────────────────────── const TrustLogos = () =>
PROJEKTE · KUNDEN
Tscheulin Architekten
Barcelo Baumann
Architekten
; const logoCellStyle = { background: '#fff', minHeight: 96, display: 'flex', alignItems: 'center', justifyContent: 'center', padding: '16px' }; // ── Why mapemedia — left intro + 2x2 cards ────────────────────────────── const WhyCard = ({ num, title, desc }) => { const [hover, setHover] = React.useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ position: 'relative', background: hover ? 'var(--surface-card)' : 'var(--canvas)', padding: '36px 32px', border: '.5px solid var(--hairline-color)', transition: 'background .25s', overflow: 'hidden' }}>
{num}

{title}

{desc}

); }; const WhySection = () => { const cards = [ { num: '01', title: 'Branding für Bau & Immobilien', desc: 'Corporate Design, Logo, Website, Flyer und Exposé — alles konsistent gedacht und gestaltet.' }, { num: '02', title: 'Visualisierung vor dem Bau', desc: 'Fotorealistische Bilder und Videos machen Projekte schon vor Baubeginn sichtbar und vermarktbar.' }, { num: '03', title: 'Foto & Film für Immobilien', desc: 'Hochwertige Immobilienfotografie und Filmaufnahmen für eine starke Präsentation bestehender Objekte.' }, { num: '04', title: 'Produktvisualisierung in Bild & Film', desc: 'Produkte werden fotorealistisch inszeniert — für Marketing, Vertrieb und Kampagnen.' }]; return (
03 — Warum mapemedia

Vier Leistungen, ein Auftritt.

Von Branding über Visualisierung bis Foto und Film entstehen alle Medien aus einem Guss — abgestimmt auf Bau, Architektur, Immobilien und Produkte. So wird aus einem Projekt nicht nur ein gutes Bild, sondern ein starker Auftritt.

{cards.map((c) => )}
); }; // ── Case-study preview (dark, list + feature image) ───────────────────── const CASE_ITEMS = [ { title: 'Tscheulin Architekten', tag: 'Neubau-Vermarktung', img: 'mapemedia/assets/ref/case-tscheulin.png' }, { title: 'Barcelo Baumann Architekten', tag: 'Kunden-Visualisierung', img: 'mapemedia/assets/ref/case-barcelo.png' }, { title: 'Kuhn Design', tag: 'Produkt-Video', video: 'mapemedia/assets/ref/kuhn-design.mp4' }, { title: 'Tinyhouse', tag: 'Immobilien-Video', video: 'mapemedia/assets/ref/tinyhouse-casestudy.mp4' }]; const CasePreview = () => { const [active, setActive] = React.useState(0); return (
02 — Case Studies

Entdecke meine Arbeiten.

{CASE_ITEMS.map((c, i) => )}
{CASE_ITEMS[active].video ?
); }; // ── Services — 4 full-width alternating sections, one per Leistung ─────── const SERVICES = [ { n: '01', area: 'Branding', title: 'Branding für Bau- und Immobilienprofis', noAI: true, img: 'mapemedia/assets/ref/branding-arch.png', desc: 'Für Bau-, Architektur-, und Immobilienprofis: Ich unterstütze Sie mit einem Corporate Design – Logo, Webseite und Printmaterial wie Flyer und Exposés — alles aus einem Guss. Ein Auftritt, der über jeden Kanal hinweg dieselbe Sprache spricht.', points: ['Corporate Design & Logo', 'Webseite', 'Flyer & Exposés'] }, { n: '02', area: 'Visualisierung', title: 'Visualisierung vor dem Bau', caseHref: 'case-studies.html#case-tinyhouse', loopVideo: 'mapemedia/assets/ref/tinyhouse-casestudy.mp4', loopRatio: '16 / 9', desc: 'Fotorealistische Bilder und Videos von Projekten, bevor sie gebaut sind. Mithilfe von Drohnenaufnahmen wird das Projekt in den Kontext gesetzt und bereits vor Baubeginn sichtbar, vermarktbar und überzeugend präsentiert.', points: ['Bilder & Videos vor Baubeginn', 'Aus Plan, Skizze oder Briefing', 'Vermarktungsfertig in 4K'] }, { n: '03', area: 'Fotografie & Film', title: 'Foto- und Videoproduktion von Immobilien', noAI: true, img: 'mapemedia/assets/ref/foto-film.png', desc: 'Professionelle Bild- und Videoaufnahmen bestehender Immobilien — für eine starke, hochwertige Präsentation. Vom Exposé bis zur Objektseite: Material, das dem Objekt gerecht wird.', points: ['Architektur- & Innenaufnahmen', 'Bewegtbild vor Ort', 'Druck- & Web-Dateien'] }, { n: '04', area: 'Produkt', title: 'Produktvisualisierungen in Bild und Film', caseHref: 'case-studies.html#case-kuhn', loopVideo: 'mapemedia/assets/ref/kuhn-design.mp4', loopRatio: '16 / 9', desc: 'Fotorealistische Visualisierungen und Videos für Produkte. Ein Asset-Set, das auf allen Kanälen funktioniert — von der Reel-Sekunde bis zur Produktdetailseite.', points: ['Fotorealistische Produktbilder', 'Cinematische Produktfilme', 'Für Shop & Social'] }]; const ServiceRow = ({ n, slot, img, compare, video, loopVideo, loopRatio, photoVideo, slotGrid, noAI, area, title, desc, points, caseHref, reverse, dark }) =>
{/* visual */}
{slotGrid ?
{slotGrid.map((s) =>
)}
: photoVideo ?
{photoVideo.photos.map((src, idx) => )}
} after={
: video ? : loopVideo ? : compare ?
: img ? {title} : } {!noAI && }
{/* content */}
{n} {area}

{title}

{desc}

{caseHref && Referenz ansehen}
; const ServicesSection = () =>
{SERVICES.map((s, i) => { const odd = i % 2 === 1; return (
{i === 0 && }
); })}
; Object.assign(window, { TrustLogos, WhySection, CasePreview, ServicesSection, ServiceRow, WhyCard });