diff --git a/README.md b/README.md index 44408eb..0b7fee9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# [Threads clone](https://threads.codebustar.com) +# [Smiths clone](https://smiths.codebustar.com) -This is an open source **threads-clone** build with ***`create-t3-app`*** and everything new in Next.js 13 and 14. +This is an open source **Smiths clone** built with ***`create-t3-app`*** and everything new in Next.js 13 and 14. |1. Feed Page |2. Search Page | |:---:|:---:| @@ -14,13 +14,13 @@ This is an open source **threads-clone** build with ***`create-t3-app`*** and e ## Tech Stack - **Framework:** [Next.js](https://nextjs.org) -- **Language:** [Typescript](https://www.typescriptlang.org/docs/) +- **Language:** [TypeScript](https://www.typescriptlang.org/docs/) - **Styling:** [Tailwind CSS](https://tailwindcss.com) - **User Management:** [Clerk](https://clerk.com) - **ORM:** [Prisma ORM](https://www.prisma.io/) - **UI Components:** [shadcn/ui](https://ui.shadcn.com) - **File Uploads:** [uploadthing](https://uploadthing.com) -- **Typesafe APIs:** [tRPC](https://trpc.io) +- **Type-safe APIs:** [tRPC](https://trpc.io) - **Hosting:** [Vercel](https://vercel.com/) ## Key Features @@ -34,7 +34,7 @@ This is an open source **threads-clone** build with ***`create-t3-app`*** and e - Image filteration with **nsfw-filter** - Custom notifications on user interactions - Custom component on top of **shadcn/ui** -- Recursive threads with **prisma.$queryRaw** +- Recursive Smiths with **prisma.$queryRaw** - ***...and many more !*** ## Running Locally @@ -42,7 +42,7 @@ This is an open source **threads-clone** build with ***`create-t3-app`*** and e 1. Clone the repository ```bash - git clone https://github.com/sujjeee/threads-clone.git + git clone https://github.com/sujjeee/smiths.git ``` 2. Install dependencies using pnpm diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 884a406..79d40f4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -18,7 +18,7 @@ const inter = Inter({ }); export const metadata: Metadata = { - metadataBase: new URL('https://threads.codebustar.com'), + metadataBase: new URL('https://smiths.codebustar.com'), title: { default: siteConfig.name, template: `%s • ${siteConfig.name}`, @@ -29,8 +29,8 @@ export const metadata: Metadata = { "prisma", "tRPC", "sujjeee", - "threads", - "threads-clone", + "smiths", + "smiths-clone", "t3-stack", "uploadthing", "shadcn ui" diff --git a/src/components/layouts/site-footer.tsx b/src/components/layouts/site-footer.tsx index 5529557..b59903c 100644 --- a/src/components/layouts/site-footer.tsx +++ b/src/components/layouts/site-footer.tsx @@ -13,7 +13,7 @@ export default function SiteFooter() {
  • - Threads Terms + Smiths Terms
  • @@ -37,4 +37,4 @@ export default function SiteFooter() { ) -} \ No newline at end of file +} diff --git a/src/config/site.ts b/src/config/site.ts index a690588..4adae0b 100644 --- a/src/config/site.ts +++ b/src/config/site.ts @@ -1,13 +1,13 @@ export type SiteConfig = typeof siteConfig export const siteConfig = { - name: "Threads", - description: "Open source threads clone with t3 stack.", - url: "https://threads.codebustar.com.vercel.app", - ogImage: "https://threads.codebustar.com/opengraph-image.png", + name: "Smiths", + description: "Open source Smiths clone with t3 stack.", + url: "https://smiths.codebustar.com", + ogImage: "https://smiths.codebustar.com/opengraph-image.png", links: { twitter: "https://twitter.com/sujjeeee", github: "https://github.com/sujjeee", discord: "https://discord.com/users/sujjeee", }, -} \ No newline at end of file +}