# Kilroy Public House
> Authentic Irish pub with two locations in Northwest Arkansas — Rogers and Siloam Springs. Craft beer, cocktails, food, and live events.
Kilroy Public House serves traditional Irish pub fare alongside a rotating tap list of local and imported beers, classic and signature cocktails, and a curated wine and coffee menu. The pub regularly hosts live music, trivia, and community events.
## Pages
- [Home](/): Overview, menu (Beer, Cocktails, Food), upcoming events, and contact details for both locations.
*** Add File: src/routes/sitemap[.]xml.ts
import { createFileRoute } from "@tanstack/react-router";
import type {} from "@tanstack/react-start";
const BASE_URL = "https://shamrock-digital-pub.lovable.app";
export const Route = createFileRoute("/sitemap.xml")({
server: {
handlers: {
GET: async () => {
const entries = [
{ path: "/", changefreq: "weekly", priority: "1.0" },
];
const urls = entries.map(
(e) =>
` \n ${BASE_URL}${e.path}\n ${e.changefreq}\n ${e.priority}\n `,
);
const xml = [
``,
``,
...urls,
``,
].join("\n");
return new Response(xml, {
headers: {
"Content-Type": "application/xml",
"Cache-Control": "public, max-age=3600",
},
});
},
},
},
});