Skip to content

vvk147/labfox

 
 

Repository files navigation

Startup Next.js Template

This is a template for a Next.js project with TypeScript, Tailwind CSS, and other useful libraries and configurations.

Project Structure

├── .github
│   └── workflows
│       └── deploy.yml
├── out
│   ├── _next
│   ├── index.html
│   └── ...
├── node_modules
├── pages
│   ├── _app.js
│   ├── index.js
│   └── ...
├── public
│   └── ...
├── styles
│   └── ...
├── next.config.js
├── package.json
├── tailwind.config.js
└── ...

Getting Started

Prerequisites

Ensure you have the following installed:

  • Node.js (v16 or higher)
  • npm or yarn

Installation

  1. Clone the repository:

    git clone https://github.com/your-username/startup-nextjs-template.git
    cd startup-nextjs-template
  2. Install dependencies:

    npm install
    # or
    yarn install
    

Development

To run the development server:

npm run dev
# or
yarn dev

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

Export the Static Site:

Run the following commands to export your Next.js app as a static site:

npm run build

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 91.8%
  • JavaScript 7.4%
  • CSS 0.8%