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