diff --git a/apps/web/public/image.png b/apps/web/public/image.png index 34bceb9..f929303 100644 Binary files a/apps/web/public/image.png and b/apps/web/public/image.png differ diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 4fee6c8..3469cbc 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -19,20 +19,22 @@ export const metadata: Metadata = { keywords: [ "TypeScript", "project scaffolding", + "biolerplate", "type safety", "Drizzle", "Prisma", "hono", "elysia", "turborepo", - "libSQL", - "PostgreSQL", + "trpc", + "orpc", + "turso", + "neon", "Better-Auth", - "Docker", - "GitHub Actions", + "convex", "monorepo", "Better-T Stack", - "Create better t stack", + "create-better-t-stack", ], authors: [{ name: "Better-T Stack Team" }], creator: "Better-T Stack", diff --git a/apps/web/src/app/robots.ts b/apps/web/src/app/robots.ts new file mode 100644 index 0000000..8299f52 --- /dev/null +++ b/apps/web/src/app/robots.ts @@ -0,0 +1,13 @@ +export const dynamic = "force-static"; +import type { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + allow: "/", + disallow: "/private/", + }, + sitemap: "https://better-t-stack.amanv.dev/sitemap.xml", + }; +} diff --git a/apps/web/src/app/sitemap.ts b/apps/web/src/app/sitemap.ts new file mode 100644 index 0000000..492269b --- /dev/null +++ b/apps/web/src/app/sitemap.ts @@ -0,0 +1,25 @@ +export const dynamic = "force-static"; +import type { MetadataRoute } from "next"; + +export default function sitemap(): MetadataRoute.Sitemap { + return [ + { + url: "https://better-t-stack.amanv.dev/", + lastModified: new Date(), + changeFrequency: "weekly", + priority: 1, + }, + { + url: "https://better-t-stack.amanv.dev/new", + lastModified: new Date(), + changeFrequency: "weekly", + priority: 0.8, + }, + { + url: "https://better-t-stack.amanv.dev/docs", + lastModified: new Date(), + changeFrequency: "weekly", + priority: 0.5, + }, + ]; +} diff --git a/bun.lock b/bun.lock index 6f53ef7..e2fbbc3 100644 --- a/bun.lock +++ b/bun.lock @@ -14,7 +14,7 @@ }, "apps/cli": { "name": "create-better-t-stack", - "version": "2.10.4", + "version": "2.11.0", "bin": { "create-better-t-stack": "dist/index.js", },