feat: deploy Domain Scanner via Docker, not GeoExport mirror

Replace VPS install with docker compose + nginx. Add network export
module, Telegram bot footer card, and archive legacy site/ mirror.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Андрей Бобырев
2026-05-24 22:11:23 +03:00
parent 8e69bfcb3d
commit 8ae11c2abf
7 changed files with 314 additions and 69 deletions

View File

@@ -10,6 +10,7 @@ import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Badge, Skeleton } from "@/components/ui/badge";
import type { ScanResult } from "@/lib/types";
import Link from "next/link";
import { NetworkExport } from "@/components/scan/network-export";
export function ScanPanel() {
const searchParams = useSearchParams();
@@ -269,6 +270,10 @@ function ScanResults({ result, scanId }: { result: ScanResult; scanId: string |
</div>
</CardContent>
</Card>
<div className="lg:col-span-2">
<NetworkExport result={result} />
</div>
</div>
</motion.div>
);