Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Aider] Aider: rename all user visible instances of 'threads' to 'smiths' #12

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 |
|:---:|:---:|
Expand All @@ -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
Expand All @@ -34,15 +34,15 @@ 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

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
Expand Down
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
Expand All @@ -29,8 +29,8 @@ export const metadata: Metadata = {
"prisma",
"tRPC",
"sujjeee",
"threads",
"threads-clone",
"smiths",
"smiths-clone",
"t3-stack",
"uploadthing",
"shadcn ui"
Expand Down
4 changes: 2 additions & 2 deletions src/components/layouts/site-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function SiteFooter() {
</li>
<li>
<a href="#" className="text-gray-500 transition hover:opacity-75">
Threads Terms
Smiths Terms
</a>
</li>

Expand All @@ -37,4 +37,4 @@ export default function SiteFooter() {
</footer>

)
}
}
10 changes: 5 additions & 5 deletions src/config/site.ts
Original file line number Diff line number Diff line change
@@ -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",
},
}
}