export default function handler(req, res) {
  res.setHeader('Content-Type', 'text/xml');
  res.write(`<?xml version="1.0" encoding="UTF-8"?>
    <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
      <url>
        <loc>https://www.taxiorlic.at/</loc>
        <lastmod>2026-03-05</lastmod>
      </url>
    </urlset>`);
  res.end();
}