This project is built using Next.js and Tailwind CSS, providing a modern and responsive design.
.eslintrc.json
.gitignore
.next/
app/
components/
hooks/
lib/
public/
styles/
- app/: Contains the main application files including layout and pages.
- components/: Reusable UI components.
- hooks/: Custom React hooks.
- lib/: Utility functions and libraries.
- public/: Static assets like images and fonts.
- styles/: Global and component-specific styles.
- Clone the repository:
git clone https://github.com/curtainteddy/server-down-page.git
cd server-down-page
- Install dependencies:
pnpm install
To start the development server, run:
pnpm run dev
This will start the server at http://localhost:3000
To build the project for production, run:
pnpm run build
This will create an optimized build in the .next directory.
To lint the project, run:
pnpm run lint