logo
logo

Package Versions

NextJs logo
v15.3.2

NextJs

React logo
v19.1.0

React

Tailwindcss logo
v4.1.8

Tailwindcss

NextAuth logo
v4.24.11

NextAuth

Typescript logo
v5.6.3

Typescript

SaasCandy Tailwind NextJs Template is built with Tailwindcss and Nextjs.

This theme is ready to use and you can totally customize as per your requirement.

For customization, you should have knowledge of NextJs, ReactJs, Tailwind and JSX to be able to modify this template.

Pacakge Structure

SaasCandy Tailwind Nextjs Templates
  • |—

    packages

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

    |

        • |—

          markdown
        • |—

          public
        • |—

          src

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          |

          • |—

            app

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            |

            • |—

              (site) (Contains all the pages)

              |

              |

              |

              |

              |

              |

              |

              |

              |

              |

              • |—

                (auth)

                |

                |

                • |

                  |—

                  signin
                • |

                  |—

                  signup
              • |—

                blog
              • |—

                contact
              • |—

                documentation
              • |—

                portfolio
              • |—

                pricing
              • |—

                services
            • |—

              components (All the Components of this template.)
            • |—

              types
            • |—

              api

              |

              |

              • |—

                auth
              • |—

                contex
            • |—

              global.css
            • |—

              layout.tsx
            • |—

              not-found.tsx
            • |—

              page.tsx
          • |—

            Context

            |

            • |—

              authDialogContext.tsx

          • |—

            utils
        • |—

          next.config.mjs
        • |—

          postcss.config.mjs
        • |—

          package.json
        • |—

          tsconfig.json

Quick Start

1. Requirements

Before proceeding, you need to have the latest stable node.js

Recommended environment:
  • node js 20+
  • npm js 10+
2. Install

Open package folder and install its dependencies. We recommanded yarn or npm.

1) Install with npm:

cd project-folder

npm install

1) Install with yarn:

cd project-folder

yarn install

3. Start

Once npm install is done now you an run the app.

npm run dev or yarn run dev

This command will start a local webserver http://localhost:3000:

> SaasCandy_project@1.0.0 dev

> next dev

-Next.js 15.1.2

-Local: http://localhost:3000

4. Build / Deployment

After adding url run below command for build a app.

npm run build or yarn build

Finally, Your webiste is ready to be deployed.🥳

Project Configuration

Colors

1. Override Colors
For any change in colors : tailwind.config.ts

--color-primary: #ee7b11;--color-secondary: #effbff;--color-warning: #ee7b11;--color-grey: #f9f9fb;--color-dark: #141414;--color-Dark-primary: #001c68;--color-cream: #fff4ce;--color-darkcream: #ffdfaf;--color-success: #37a05b;--color-Snowy-sky: #2753c9;--color-lightyellow: #ffd44d;--color-Smoke: #f1f1f5;--color-darkmode: #081738;--color-darklight: #000f30;--color-midnight_text: #102d47;--color-Sky-mist-blue: #aec8df;--color-darkborder: #192a4a;--color-border_color: #224767;--color-blue: #1642b9;

2. Override Theme Colors
For change , go to : tailwind.config.ts

--color-primary: #ee7b11;--color-secondary: #effbff;

Typography

1. Change Font family over here : src/app/layout.tsx

import { Manrope } from "next/font/google";

const Manrope = Manrope({ subsets: ["latin"] });

Logo

1. Change Logo over here : src/components/Layout/Header/Logo/index.tsx

<Link href="/">

<Image

src="/images/logo/logo.svg"

alt="logo"

width=160

height=50

quality=100

className='dark:hidden'

/>

<Image

src="/images/footer/footer-logo-white.svg"

alt="logo"

width=160

height=50

quality=100

className='dark:block hidden'

/>

</Link>