Skip to content

Commit bfcecf5

Browse files
update domain
1 parent 2bdfb95 commit bfcecf5

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

.changeset/flat-feet-heal.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-better-t-stack": patch
3+
---
4+
5+
update domain

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This repository is organized as a monorepo containing:
3939

4040
## Documentation
4141

42-
Visit [better-t-stack.amanv.dev](https://better-t-stack.amanv.dev) for full documentation, guides, and examples.
42+
Visit [better-t-stack.dev](https://better-t-stack.dev) for full documentation, guides, and examples.
4343

4444
## Development
4545

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"url": "git+https://github.com/AmanVarshney01/create-better-t-stack.git",
4444
"directory": "apps/cli"
4545
},
46-
"homepage": "https://better-t-stack.amanv.dev/",
46+
"homepage": "https://better-t-stack.dev/",
4747
"scripts": {
4848
"build": "tsdown",
4949
"dev": "tsdown --watch",

apps/cli/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ const router = t.router({
317317
docs: t.procedure
318318
.meta({ description: "Open Better-T Stack documentation" })
319319
.mutation(async () => {
320-
const DOCS_URL = "https://better-t-stack.amanv.dev/docs";
320+
const DOCS_URL = "https://better-t-stack.dev/docs";
321321
try {
322322
await openUrl(DOCS_URL);
323323
log.success(pc.blue("Opened docs in your default browser."));
@@ -328,7 +328,7 @@ const router = t.router({
328328
builder: t.procedure
329329
.meta({ description: "Open the web-based stack builder" })
330330
.mutation(async () => {
331-
const BUILDER_URL = "https://better-t-stack.amanv.dev/new";
331+
const BUILDER_URL = "https://better-t-stack.dev/new";
332332
try {
333333
await openUrl(BUILDER_URL);
334334
log.success(pc.blue("Opened builder in your default browser."));

apps/web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ To learn more about the technologies used in this website:
4444

4545
- [Next.js Documentation](https://nextjs.org/docs) - Next.js features and API
4646
- [Fumadocs](https://fumadocs.vercel.app) - The documentation framework used
47-
- [Better-T-Stack](https://better-t-stack.amanv.dev) - Main project site
47+
- [Better-T-Stack](https://better-t-stack.dev) - Main project site

apps/web/src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const metadata: Metadata = {
2222
keywords: [
2323
"TypeScript",
2424
"project scaffolding",
25-
"biolerplate",
25+
"boilerplate",
2626
"type safety",
2727
"Drizzle",
2828
"Prisma",
@@ -46,15 +46,15 @@ export const metadata: Metadata = {
4646
email: false,
4747
telephone: false,
4848
},
49-
metadataBase: new URL("https://better-t-stack.amanv.dev"),
49+
metadataBase: new URL("https://better-t-stack.dev"),
5050
alternates: {
5151
canonical: "/",
5252
},
5353
openGraph: {
5454
title: "Better-T Stack",
5555
description:
5656
"A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
57-
url: "https://better-t-stack.amanv.dev",
57+
url: "https://better-t-stack.dev",
5858
siteName: "Better-T Stack",
5959
images: [
6060
{

apps/web/src/app/robots.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export default function robots(): MetadataRoute.Robots {
88
allow: "/",
99
disallow: "/private/",
1010
},
11-
sitemap: "https://better-t-stack.amanv.dev/sitemap.xml",
11+
sitemap: "https://better-t-stack.dev/sitemap.xml",
1212
};
1313
}

apps/web/src/app/sitemap.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ import type { MetadataRoute } from "next";
44
export default function sitemap(): MetadataRoute.Sitemap {
55
return [
66
{
7-
url: "https://better-t-stack.amanv.dev/",
7+
url: "https://better-t-stack.dev/",
88
lastModified: new Date(),
99
changeFrequency: "weekly",
1010
priority: 1,
1111
},
1212
{
13-
url: "https://better-t-stack.amanv.dev/new",
13+
url: "https://better-t-stack.dev/new",
1414
lastModified: new Date(),
1515
changeFrequency: "weekly",
1616
priority: 0.8,
1717
},
1818
{
19-
url: "https://better-t-stack.amanv.dev/docs",
19+
url: "https://better-t-stack.dev/docs",
2020
lastModified: new Date(),
2121
changeFrequency: "weekly",
2222
priority: 0.5,

0 commit comments

Comments
 (0)