placeholder

This commit is contained in:
ryan 2026-01-05 12:08:45 +11:00
parent c638086d93
commit 5e5d6166d5
3 changed files with 11 additions and 42 deletions

View File

@ -1,16 +0,0 @@
import type { APIRoute } from "astro";
const robotsTxt = `
User-agent: *
Allow: /
Sitemap: ${new URL("sitemap-index.xml", import.meta.env.SITE).href}
`.trim();
export const GET: APIRoute = () => {
return new Response(robotsTxt, {
headers: {
"Content-Type": "text/plain; charset=utf-8",
},
});
};

View File

@ -12,5 +12,6 @@
</head> </head>
<body> <body>
<h1>Ryan Pandya</h1> <h1>Ryan Pandya</h1>
<h4>More to come.</h4>
</body> </body>
</html> </html>

View File

@ -1,16 +0,0 @@
---
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
</html>