"use client"; import type { ParcelAnalysisGeology } from "@/types/site-finder"; interface Props { geology: ParcelAnalysisGeology; } export function GeologyBlock({ geology }: Props) { return (
Геология
{geology.note}
{/* Primary CTA */} Открыть ВСЕГЕИ ГИС-Атлас → {/* Secondary link */} ЕФГИ (требуется ЕСИА)
{geology.lat.toFixed(6)}, {geology.lon.toFixed(6)}
); }