"use client"; import { tokens } from "./tokens"; import { object, report } from "./fixtures"; interface HeroBarProps { onOpenInfo: () => void; } export default function HeroBar({ onOpenInfo }: HeroBarProps) { return (
{/* LEFT: meta + buttons */}
ОТЧЁТ
{report.id}
ДАТА
{report.date}
ДЕЙСТВИТЕЛЕН ДО
{report.validUntil}
{/* RIGHT: photo + overlays */}
{/* address card */}
АДРЕС
{object.address}
{object.city}
{object.streetView}
КОЭФ. ЛОКАЦИИ {object.locationCoef} ?
{/* compass */}
{object.compass}
{/* distance scale */}
0 25 50 75 100м
{/* corner brackets */}
); }