Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/docs
/node_modules
/.next/
next-env.d.ts
commitlint.config.js
next.config.js
postcss.config.js
35 changes: 35 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"prettier",
],
overrides: [
{
env: {
node: true,
},
files: [".eslintrc.{js,cjs}"],
parserOptions: {
sourceType: "script",
},
},
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["@typescript-eslint", "react"],
rules: {},
settings: {
react: {
version: "detect",
},
},
};
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
}
{
"extends": "next/core-web-vitals"
}
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no -- commitlint --edit "$1"
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run pre-commit
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/docs
/node_modules
/.next/
next-env.d.ts
commitlint.config.js
next.config.js
postcss.config.js
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"endOfLine": "lf",
"trailingComma": "es5",
"jsxSingleQuote": true
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.format": true
}
}
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Changelog

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Expand Down Expand Up @@ -51,4 +50,3 @@ This project is licensed under the [License Name] - see the [LICENSE.md](./licen
## Customization

You can customize this changelog to meet the specific needs and preferences of your project. Feel free to modify the structure, add more details, or change the formatting to better suit your project's versioning and documentation requirements.

188 changes: 94 additions & 94 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,94 +1,94 @@
At Mindfire, we are passionate about open-source technology and its power to drive innovation and collaboration. Welcome to our open-source projects hub, where we contribute to and collaborate with the global open-source community on exciting and impactful projects.
[Visit our official github page](https://mindfiredigital.github.io/)
## About Us
Mindfire Digital LLP, a leading provider of Software & IT services dedicated to enhancing business growth through the development and delivery of complex projects. With over two decades of experience, Mindfire has forged partnerships with global companies across diverse industries, consistently delivering stellar software products. Our highly skilled team of 650+ passionate technologists excels at connecting the dots between people, technology, products, and business, ensuring seamless innovation and success.
[Visit our official website](https://www.mindfiredigitalllp.com/)
## Our Mission
Our mission is to foster creativity, share knowledge, and build solutions that make a positive impact on the world. We believe that by working together with the open-source community, we can tackle complex challenges and create cutting-edge solutions that benefit everyone.
## Why Open Source?
Open source embodies the spirit of collaboration, transparency, and continuous improvement. By sharing our code, ideas, and expertise with the world, we aim to inspire others and contribute to a culture of innovation and learning.
## Our Contributions
Explore our growing list of open-source projects, ranging from software libraries and frameworks to tools and utilities. We are committed to actively contributing to these projects and maintaining a strong presence in the open-source ecosystem.
[Read our contribution guide](https://github.com/mindfiredigital/mindfiredigital.github.io/blob/dev/CONTRIBUTING.md)
## Get Involved
Join us on this exciting journey! Whether you're a developer, designer, tester, or simply passionate about open source, there are many ways to get involved. Contribute to our projects, report issues, suggest improvements, or simply engage in discussions.
## Explore Our Projects
Ready to dive in? We have exciting open-source projects in the pipeline, and they'll be coming soon to our growing community. Stay tuned for updates on our upcoming projects.
We're actively working on these initiatives, and they'll be available for contributions and exploration in the near future. Be sure to check back regularly for updates!
## Connect with Us
Stay updated with our latest contributions and news. Follow us on social media, join our mailing list, and be part of our vibrant open-source community.
Connect with us on social media and via email:
- [LinkedIn](https://www.linkedin.com/company/mindfire-solutions/)
- [Twitter](https://twitter.com/mindfires)
- [Instagram](https://www.instagram.com/mindfiresolutions/)
- [Facebook](https://www.facebook.com/MindfireSolutions)
We look forward to collaborating with you and making a meaningful impact through open source. Let's innovate together!
[Visit our website](https://www.mindfiredigitalllp.com/)
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
To build application for generating static files:
```bash
npm run build
# or
yarn build
# or
pnpm build
# or
bun build
```
To serve contents of build folder(for generated static files while build):
```bash
npm run start:build
# or
yarn start:build
# or
pnpm start:build
# or
bun start:build
```
## List of Contributors
- [lakinmindfire](https://github.com/lakinmindfire)
- [VershalaTandon](https://github.com/VershalaTandon)
- [prashant-mindfire](https://github.com/prashant-mindfire)
- [aryanxorian](https://github.com/aryanxorian)
- [avishekthapamindfire0822](https://github.com/avishekthapamindfire0822)
- [ArnabKMindfire](https://github.com/ArnabKMindfire)
At Mindfire, we are passionate about open-source technology and its power to drive innovation and collaboration. Welcome to our open-source projects hub, where we contribute to and collaborate with the global open-source community on exciting and impactful projects.
[Visit our official github page](https://mindfiredigital.github.io/)

## About Us

Mindfire Digital LLP, a leading provider of Software & IT services dedicated to enhancing business growth through the development and delivery of complex projects. With over two decades of experience, Mindfire has forged partnerships with global companies across diverse industries, consistently delivering stellar software products. Our highly skilled team of 650+ passionate technologists excels at connecting the dots between people, technology, products, and business, ensuring seamless innovation and success.
[Visit our official website](https://www.mindfiredigitalllp.com/)

## Our Mission

Our mission is to foster creativity, share knowledge, and build solutions that make a positive impact on the world. We believe that by working together with the open-source community, we can tackle complex challenges and create cutting-edge solutions that benefit everyone.

## Why Open Source?

Open source embodies the spirit of collaboration, transparency, and continuous improvement. By sharing our code, ideas, and expertise with the world, we aim to inspire others and contribute to a culture of innovation and learning.

## Our Contributions

Explore our growing list of open-source projects, ranging from software libraries and frameworks to tools and utilities. We are committed to actively contributing to these projects and maintaining a strong presence in the open-source ecosystem.
[Read our contribution guide](https://github.com/mindfiredigital/mindfiredigital.github.io/blob/dev/CONTRIBUTING.md)

## Get Involved

Join us on this exciting journey! Whether you're a developer, designer, tester, or simply passionate about open source, there are many ways to get involved. Contribute to our projects, report issues, suggest improvements, or simply engage in discussions.

## Explore Our Projects

Ready to dive in? We have exciting open-source projects in the pipeline, and they'll be coming soon to our growing community. Stay tuned for updates on our upcoming projects.

We're actively working on these initiatives, and they'll be available for contributions and exploration in the near future. Be sure to check back regularly for updates!

## Connect with Us

Stay updated with our latest contributions and news. Follow us on social media, join our mailing list, and be part of our vibrant open-source community.

Connect with us on social media and via email:

- [LinkedIn](https://www.linkedin.com/company/mindfire-solutions/)
- [Twitter](https://twitter.com/mindfires)
- [Instagram](https://www.instagram.com/mindfiresolutions/)
- [Facebook](https://www.facebook.com/MindfireSolutions)

We look forward to collaborating with you and making a meaningful impact through open source. Let's innovate together!

[Visit our website](https://www.mindfiredigitalllp.com/)

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

To build application for generating static files:

```bash
npm run build
# or
yarn build
# or
pnpm build
# or
bun build
```

To serve contents of build folder(for generated static files while build):

```bash
npm run start:build
# or
yarn start:build
# or
pnpm start:build
# or
bun start:build
```

## List of Contributors

- [lakinmindfire](https://github.com/lakinmindfire)
- [VershalaTandon](https://github.com/VershalaTandon)
- [prashant-mindfire](https://github.com/prashant-mindfire)
- [aryanxorian](https://github.com/aryanxorian)
- [avishekthapamindfire0822](https://github.com/avishekthapamindfire0822)
- [ArnabKMindfire](https://github.com/ArnabKMindfire)
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
};
Loading