- Replaced global navbar, now mobile friendly

- Corrected sizing of LyricSearchInputField
- Removed sitemap from auto-generated robots.txt
This commit is contained in:
2025-11-22 12:12:56 -05:00
parent 8d6bc3d10f
commit e4d2b4ec05
4 changed files with 262 additions and 65 deletions

View File

@@ -1,11 +1,8 @@
const getRobotsTxt = (sitemapURL) => `
const getRobotsTxt = () => `
User-agent: *
Allow: /
Sitemap: ${sitemapURL.href}
`;
export const GET = ({ site }) => {
const sitemapURL = new URL("sitemap-index.xml", site);
return new Response(getRobotsTxt(sitemapURL));
export const GET = () => {
return new Response(getRobotsTxt());
};