v5: Mollie (EU) statt Stripe, Sitemap + llms-full.txt, /prognose-Methodik, ausgebauter Datenschutz/Transparenz, Scraper-Adapter toom/bauhaus/hornbach + compose/cron-ready, checkedAt-Stempel im Monitor

This commit is contained in:
2026-06-28 07:26:21 +00:00
parent 7636a00d9f
commit a266b14482
18 changed files with 265 additions and 11 deletions
+32
View File
@@ -0,0 +1,32 @@
import { allProducts, priceIntel, euro } from '../lib/pricing';
export const GET = () => {
const L:string[] = [
'# Kühlfinder Vollständige Referenz',
'> Kontrollzentrum für Klimagerät-Verfügbarkeit in DE/AT/CH/NL/PL/DK: Live-Bestand in Bau- und Elektromärkten + Online/Amazon/eBay, Verfügbarkeits-Prognose, Preis-Check mit Wucher-Warnung, Custom-Alarm + Preiswecker. Eigener Scraper, keine Drittdaten.',
'',
'## Kernfunktionen',
'- Live-Karte & Tabelle aller Märkte mit Bestand (idealo zeigt keinen Filialbestand).',
'- Verfügbarkeits-Prognose (Chance 7 Tage) aus Restock-Historie. Methodik: /prognose',
'- Preis-Intelligenz: günstigster/üblicher/teuerster Preis, eBay-Range, Retoure/refurbished, Wucher ab UVP×1,3.',
'- Custom Multi-Artikel-Watchlist, Alarm + Preiswecker (E-Mail kostenlos, Telegram/Echtzeit im Pro-Pass).',
'- Beratung: 60-Sekunden-Finder, Klima-Rechner (kW/BTU), Soforthilfe, feste Anlage (SHK).',
'',
'## Geräte (kuratiert)',
];
for (const p of allProducts){ const pi=priceIntel(p); L.push(`- ${p.name}${p.type==='mobile_split'?'mobile Split':'Monoblock'}, ${p.btuh} BTU, ${p.roomSizeM2[0]}${p.roomSizeM2[1]} m², EEK ${p.efficiencyCooling}. ${p.shortVerdict} Üblicher Preis ${euro(pi.fairPrice)}. /geraete/${p.slug}`); }
L.push('', '## Seiten',
'- / Startseite (availability-first)',
'- /karte Live-Monitor (Karte, Tabelle, Prognose, Preis-Strip)',
'- /rechner Klima-Rechner (Leistung + Empfehlung)',
'- /finder 60-Sekunden-Empfehlung',
'- /geraete alle Geräte; /geraete/<slug> Details',
'- /portasplit PortaSplit-Status & Alternativen',
'- /alarm Custom-Alarm + Preiswecker',
'- /pro Pro-Pass (Echtzeit, Telegram, Frühwarnung)',
'- /soforthilfe Hitze-Tipps (Dachgeschoss/Haus)',
'- /klimaanlage-installieren feste Anlage (SHK), Preise & Partner',
'- /prognose Prognose-Methodik',
'- /hitzeschutz Klimawandel-Kontext',
'- /transparenz Methodik, Affiliate, Tracking, Zahlung');
return new Response(L.join('\n'), { headers: { 'Content-Type':'text/plain; charset=utf-8' } });
};