Skip to content

Commit d267e9d

Browse files
committed
Project Description Updated
1 parent 0b91e4a commit d267e9d

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">
2-
Next.js TypeScript Starter
2+
Next.js TypeScript SaaS Starter
33
</h1>
44

55
<p align="center">
@@ -69,8 +69,8 @@
6969
1. Clone the repository:
7070

7171
```bash
72-
git clone https://github.com/nirnejak/nextjs-typescript-starter.git
73-
cd nextjs-typescript-starter
72+
git clone https://github.com/nirnejak/nextjs-typescript-saas.git
73+
cd nextjs-typescript-saas
7474
```
7575

7676
2. Install dependencies:

app/not-found.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { getMetadata } from "@/utils/metadata"
77
export const metadata = getMetadata({
88
path: "/",
99
title: "Not Found | Next.js App",
10-
description: "Page not found on Next.js Typescript Starter",
10+
description: "Page not found on Next.js TypeScript SaaS Starter",
1111
})
1212

1313
const NotFound: React.FC = () => {

app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getMetadata } from "@/utils/metadata"
88
export const metadata = getMetadata({
99
path: "/",
1010
title: "Next.js App",
11-
description: "Next.js Typescript Starter",
11+
description: "Next.js TypeScript SaaS Starter",
1212
})
1313

1414
const Home: React.FC = () => {

bun.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"lockfileVersion": 1,
33
"workspaces": {
44
"": {
5-
"name": "nextjs-typescript-starter",
5+
"name": "nextjs-typescript-saas",
66
"dependencies": {
77
"@auth/drizzle-adapter": "^1.8.0",
88
"@mdx-js/loader": "^3.1.0",

config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const config = {
22
baseUrl: "https://nextjs-typescript-saas.vercel.app",
3-
appName: "Next.js TypeScript Starter",
3+
appName: "Next.js TypeScript SaaS Starter",
44
appDescription:
5-
"Next.js started configured TypeScript, ESLint, Tailwind, with some additional configuration",
5+
"Next.js starter for building SaaS products configured TypeScript, Drizzle, NextAuth, ESLint, Tailwind, Framer Motion etc.",
66
creator: "<Creator Name>",
77
authorName: "<Author Name>",
88
authorUrl: "<Author Name or Email>",

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "nextjs-typescript-starter",
3-
"description": "Next.js TypeScript Starter",
2+
"name": "nextjs-typescript-saas",
3+
"description": "Next.js TypeScript SaaS Starter",
44
"version": "1.0.0",
55
"author": "Jitendra Nirnejak <[email protected]>",
66
"type": "module",
@@ -82,9 +82,9 @@
8282
"license": "MIT",
8383
"repository": {
8484
"type": "git",
85-
"url": "https://github.com/nirnejak/nextjs-typescript-starter"
85+
"url": "https://github.com/nirnejak/nextjs-typescript-saas"
8686
},
8787
"bugs": {
88-
"url": "https://github.com/nirnejak/nextjs-typescript-starter/issues"
88+
"url": "https://github.com/nirnejak/nextjs-typescript-saas/issues"
8989
}
9090
}

public/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"display": "standalone",
55
"scope": "/",
66
"start_url": "/",
7-
"name": "Next.js TypeScript Starter",
8-
"short_name": "Next.js TypeScript Starter",
9-
"description": "Next.js started configured TypeScript, ESLint, Tailwind, with some additional configuration",
7+
"name": "Next.js TypeScript SaaS Starter",
8+
"short_name": "Next.js TypeScript SaaS Starter",
9+
"description": "Next.js starter for building SaaS products configured TypeScript, Drizzle, NextAuth, ESLint, Tailwind, Framer Motion etc.",
1010
"icons": [
1111
{
1212
"src": "/path-to-icons/icon-192x192.png",

0 commit comments

Comments
 (0)