diff --git a/frontend/src/app/site-finder/analysis/[cad]/page.tsx b/frontend/src/app/site-finder/analysis/[cad]/page.tsx index c2ceefa2..6a82c8da 100644 --- a/frontend/src/app/site-finder/analysis/[cad]/page.tsx +++ b/frontend/src/app/site-finder/analysis/[cad]/page.tsx @@ -1,7 +1,7 @@ import { Suspense } from "react"; import type { Metadata } from "next"; -import { PticaPageContent } from "./ptica/PticaPageContent"; +import { AnalysisPageContent } from "./AnalysisPageContent"; // ── Metadata ────────────────────────────────────────────────────────────────── @@ -21,18 +21,13 @@ export async function generateMetadata({ const { cad: cadRaw } = await params; const cad = decodeURIComponent(cadRaw); return { - title: `ПТИЦА · ${cad}`, - description: `Когнитивный анализ участка ${cad} — платформа ПТИЦА`, + title: `Анализ ${cad} — Site Finder`, + description: `Анализ инвестиционного участка ${cad}`, }; } // ── Page ────────────────────────────────────────────────────────────────────── -// The ПТИЦА cockpit is now the PRIMARY analysis view: every entry point -// (entry-map click, recent parcels, cad input, direct URL) lands here. The old -// AnalysisPageContent stays in the repo for reference but is no longer rendered -// on this route. The sibling `[cad]/ptica` subroute redirects back here so a -// single PticaPageContent is the only live copy of the cockpit. export default async function AnalysisPage({ params }: PageProps) { const { cad: cadRaw } = await params; const cad = decodeURIComponent(cadRaw); @@ -41,23 +36,18 @@ export default async function AnalysisPage({ params }: PageProps) { - Загрузка ПТИЦА… + Загрузка анализа… } > - + ); }