Skip to content

Share AI Prompts - Next.js App Router, MongoDB, Tailwind, Typescript

License

Notifications You must be signed in to change notification settings

pa4080/promptopia

Repository files navigation

Next.js 13 Full Course 2023

Platform that serves as a hub for exchanging AI prompts in a format similar to blog posts.

image

Fullstack CRUD REST App with Next.js, MongoDB, Tailwind CSS, and TypeScript

This project is based on Next.js 13 Full Course 2023 | Build and Deploy a Full Stack App Using the Official React Framework, with the following objectives:

  • Next.js 13 App Folder Structure
  • Next.js 13 Client Components vs Server Components
  • Next.js 13 File-based Routing (including dynamic and nested routes)
  • Next.js 13 page, layout, loading, and error Special Files
  • Next.js 13 Serverless Route Handlers (Next API, Full Stack Apps)
  • Next.js 13 Metadata and Search Engine Optimization (SEO)
  • Three ways to fetch data in Next.js:
    • Server Side Rendering (SSR),
    • Static Site Generation (SSG)
    • Incremental Static Generation (ISR)

Notes:

  • This is a TypeScript implementation of the tutorial.

  • Another feature that is implemented here is the Internationalization support. It is enabled via middleware.ts as it is described in the official documentation. It is possible to use the client components or the (beta) server side rendering. If one prefers they can setup next-i18next instead.

    Currently the we are supporting only English language, but the project is ready to be extended to support more languages.

  • Many improvements and added features as:

    • Two major Prompt/Posts categories: 1) Chats and 2) Images.
      • For the Chat category one may attach a link to a shared chat...
      • For the Image category one may upload an image...

References:

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

UseForm

npm i react-hook-form

Shadcn-UI

Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source. Re-usable components built using Radix UI and Tailwind CSS. This is NOT a component library. It's a collection of re-usable components that you can copy and paste into your apps.

CLI

Use the CLI to add components to your project. Use the init command to initialize dependencies for a new project. The init command installs dependencies, adds the cn util, configures tailwind.config.js, and CSS variables for the project.

npx shadcn-ui init slugify

Use the add command to add components to your project and installs all required dependencies.

npx shadcn-ui add [component]

Run the add command without any arguments to view a list of all available components:

npx shadcn-ui add

TailWind CSS

Plugins:

NextAuth (GoogleProvider) and Google OAuth

...Access blocked: This app’s request is invalid:

MongoDB

npm i bcrypt mongodb mongoose next-auth

References: