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
Estructura parcial del proyecto
pat-game
│
├── public
│
└── src
│
├── app
│ ├── globals.css
│ ├── layout.js
│ └── page.jsx
│
├── components
│ ├── about
│ ├── game
│ └── home
│ └── intro
│
└── pages
├── about
├── controls
├── game
└── intro
Thank you for considering contributing to the project! Please follow these guidelines for submitting commits.
Each commit message should have a concise yet descriptive title, followed by an optional detailed description. The title and description should be separated by a blank line.
-
feat: A new feature or enhancement to existing functionality.
-
fix: A bug fix.
-
docs: Documentation updates, such as comments, README, or inline docs.
-
style: Code style changes, such as formatting, indentation, etc.
-
refactor: Code changes that don't add features or fix bugs, like code restructuring.
-
test: Adding or improving tests.
-
chore: Routine tasks, maintenance, or tooling changes.
Please submit a pull request with your commits. Make sure your branch is up-to-date with the main branch before submitting the pull request.
All pull requests will be reviewed. Please respond to any feedback or comments and make the necessary changes before the pull request can be merged.
Thank you for your contribution!