import { NextResponse } from "next/server"; const SITE_URL = "https://denizbektas.com.tr"; export async function GET() { const xml = ` Deniz Bektaş Podcast ${SITE_URL}/podcast Türkçe siber güvenlik podcast'i — red team, pentest ve hacker kültürü tr denizbektas ${new Date().toUTCString()} `; return new NextResponse(xml, { headers: { "Content-Type": "application/xml; charset=utf-8", "Cache-Control": "public, max-age=3600" }, }); }