Skip to content

Standardize List Display with Card Component (#433) #460

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 11, 2024
Merged

Standardize List Display with Card Component (#433) #460

merged 4 commits into from
Mar 11, 2024

Conversation

Michael-Obele
Copy link
Contributor

@Michael-Obele Michael-Obele commented Mar 5, 2024

What kind of change does this PR introduce?

  • Enhancement

Issue Number:

Screenshots/videos:

28c1eaa9-2c6f-4431-a36e-9f8ada0b547c.mp4

Screenshot from 2024-03-06 22-05-09
Screenshot from 2024-03-06 22-05-28
Screenshot from 2024-03-06 22-05-53

If relevant, did you update the documentation?

  • No documentation was added. But this is a short usage guide
  • NB: icon and link are optional
import Card from 'components/Card';

// Example usage
<Card 
  title="Card Title"
  body="This is the card body content."
  icon="path/to/icon.svg"
  link="/link/to/page"
  image="/link/to/image.svg"
/>

Summary

This pull request introduces a new reusable Card component for displaying list items in a standardized format. This component aims to:

  • Improve consistency in the visual presentation of list items across the application.
  • Enhance code maintainability by providing a centralized component for managing card display logic.

Does this PR introduce a breaking change?

  • No, this PR does not introduce any breaking changes. The new Card component is intended to be integrated seamlessly into existing code without affecting functionality.

@VivekJaiswal18
Copy link
Contributor

LGTM
Suggestions:

  1. Maybe we can do this without the icons. As we are already having links for the specific use cases in the card itself.
  2. Also we can insert the link in the Heading itself. It will make it look less cluttered.
    @benjagm What do we think on this.

@benjagm
Copy link
Collaborator

benjagm commented Mar 5, 2024

LGTM Suggestions:

  1. Maybe we can do this without the icons. As we are already having links for the specific use cases in the card itself.
  2. Also we can insert the link in the Heading itself. It will make it look less cluttered.
    @benjagm What do we think on this.
  • Icons: Icons are optional. You can use them or not. But it help to have this generic component to be used in multiple contexts.
  • Links: Icon, title, and description should be links if there is a link in the json element. In addition I think we should show a button when mouse over in the card like twilio does.
Screenshot 2024-03-06 at 00 38 28

I have some comments of improvements with styles. Is great we are using the same style of the box used in the landing page, however I think we can improve the content inside the card:

  • Let's add a new optional field image to build something like Twilio does.
Screenshot 2024-03-06 at 00 38 28
  • Title. We need to make the font bigger.

  • Padding. I think we should increase the x padding.

  • Icon. When Icon is present I think it should be bigger like AsyncAPI does.

Screenshot 2024-03-06 at 00 45 24

Copy link
Collaborator

@benjagm benjagm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great first step @Michael-Obele !! Left some comments but this is looking good. I think we'll merge quickly.

@Michael-Obele
Copy link
Contributor Author

Great first step @Michael-Obele !! Left some comments but this is looking good. I think we'll merge quickly.

Thank you so much; I will get this implemented as soon as possible; the new design is extremely helpful.

@benjagm benjagm added this to the Docs Release 3 milestone Mar 6, 2024
@Michael-Obele Michael-Obele changed the base branch from main to web-release-3 March 6, 2024 20:04
@Michael-Obele
Copy link
Contributor Author

Can you please change the target branch of this PR to : https://github.com/json-schema-org/website/tree/web-release-3

Reference docs: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request

Thanks for the heads-up. I have done just that, and I have also updated the initial PR; please let me know how the new update looks. Thanks.

@benjagm
Copy link
Collaborator

benjagm commented Mar 8, 2024

@Michael-Obele can you share the code of your testing page please? So I can test it directly...

Huge thanks!!

@Michael-Obele
Copy link
Contributor Author

@Michael-Obele can you share the code of your testing page please? So I can test it directly...

Huge thanks!!

Sure, happy to help you test the implementation! Here's the code:

  • Test Page: You can test it directly on the ~/website/pages/implementations/index.page.tsx page, that's what I did. This essentially navigates to the tools (implementations) page on the website.

  • Code Snippet: Here's the specific code I added to the ImplementationTable function to create the card examples:

 <div className='grid grid-cols-2 gap-4 space-y-8 md:grid-cols-3'>
<div className='mt-8'>
  <Card
    title="Document your data"
    body="Create a clear, standardized representation of your data to improve understanding and collaboration among developers, stakeholders, and collaborators."
    icon="https://www.svgrepo.com/show/530677/organic-organism.svg"
    link="/link/to/page"
    image="/img/logos/logo-blue.svg"
  />
  <p>This card includes: title, body, icon, link, and image.</p>
</div><div>
  <Card
    title="Exchange data seamlessly"
    body="Establish a common language for data exchange, no matter the scale or complexity of your project. Define precise validation rules for your data structures to create shared understanding and increase interoperability across different systems and platforms."
    link="/link/to/page"
    image="https://www.svgrepo.com/show/530638/villa.svg"
  />
  <p>This card includes: title, body, link, and image.</p>
</div><div>
  <Card
    title="Harness the power of data visualization"
    body="Gain insights from your data through interactive dashboards and reports. Communicate complex information visually and effectively, driving informed decision-making."
    icon="https://www.svgrepo.com/show/530676/genetically-modified.svg"
    image="https://www.svgrepo.com/show/530638/villa.svg"
  />
  <p>This card includes: title, body, icon, and image.</p>
</div><div>
  <Card
    title="Foster collaboration and agility"
    body="Empower teams to work together seamlessly, regardless of location. Break down information silos and enable real-time communication for increased efficiency and productivity."
    icon="https://www.svgrepo.com/show/530674/nucleus.svg"
    link="/link/to/page"
  />
  <p>This card includes: title, body, icon, and link.</p>
</div><div>
  <Card
    title="Embrace the future of software development"
    body="Unlock the potential of cutting-edge technologies. Stay ahead of the curve by integrating innovative solutions into your development process and deliver exceptional value to your users."
    image="https://www.svgrepo.com/show/530679/gene-sequencing.svg"
  />
  <p>This card includes: title, body, and image.</p>
</div><div>
  <Card
    title="Ensure data security and compliance"
    body="Protect your valuable data with robust security measures. Implement industry-standard best practices and stay compliant with relevant regulations for peace of mind."
    link="/link/to/page"
  />
  <p>This card includes: title, body, and link.</p>
</div><div>
  <Card
    title="Vibrant tooling ecosystem"
    body="Adopt JSON Schema with an expansive range of community-driven tools, libraries, and frameworks across many programming languages."
    icon="https://www.svgrepo.com/show/530669/genetic-test-report.svg"
  />
  <p>This card includes: title, body, and icon.</p>
</div><div>
  <Card
    title="Streamline testing and validation"
    body="Simplify your validation logic to reduce your code’s complexity and save time on development. Define constraints for your data structures to catch and prevent errors, inconsistencies, and invalid data.."
  />
  <p>This card includes: title and body.</p>
</div>
</div>

I hope this clarifies things! Let me know if you have any other questions.

@benjagm
Copy link
Collaborator

benjagm commented Mar 11, 2024

Thanks @Michael-Obele . I am going to merge this as it is good enough for others to continue the integration in the dependant issues.

@benjagm benjagm merged commit da67586 into json-schema-org:web-release-3 Mar 11, 2024
@Michael-Obele
Copy link
Contributor Author

You're welcome. I'm glad to help.

benjagm pushed a commit that referenced this pull request Mar 20, 2024
* Standardize List Display with Card Component (#433)

* Addressed comments, added images, and implemented new styles

* Increased padding on the x-axis
benjagm added a commit that referenced this pull request Jul 24, 2024
* Standardize List Display with Card Component (#433) (#460)

* Standardize List Display with Card Component (#433)

* Addressed comments, added images, and implemented new styles

* Increased padding on the x-axis

* feat: added Faq section (#534)

* Fix faq

* Added Case Studies page in Overview Section  (#473)

* updated UI of blog-page

* Added Case Studies Page

* fixed linting errors

* Added casestudies

* changing index.page.tsx

* Delete components/CustomComponent.tsx

* Delete pages/overview/casestudies.md

* removed unnecessary changes

* removed unnecessary files

* fixed bug

* removed changes

* removed unnecessary files

* Pushing last changes.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* feat: added resource section (#509)

* fixed

* feat: added resource section

* feat: added resource section

* revert changes cd6d848

* revert changes 65e9f3e

* revert changes 877b0f0

* revert changes 74711cd

* fix: fixed the width issue

* revert change

* fix: added resource icon

* Tiny changes to adjust look and feel.

* Last changes to fix dark theme

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Add the Newsletter feature to the website.  (#489)

* initialize the Test directory.

* Added the subscribe button.

* Added the subscribe page.

* Added the newsletter page.

* changed name to newsletter.

* removed the unwated code.

* removed the unwated components.

* decreased the horizontal width and changed the color.

* decreased the font size.

* Added the changes for the newsletter banner.

* Added the newletter component to landing page.

* added the color for input.

* Added the required horizontal padding.

* Added the required horizontal padding. for newsletter page.

* Add changes to make it work with mailchimp

* added the yarn file back.

* Added yarn.lock file.

* Update yarn.lock

* linted the newsletter.tsx

* linted newsletter

* fix the index.page

* Small improvement in page layout.

* Fix dark theme behavior

* .

---------

Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Added welcome page (#566)

* added welcome page

* Pushed some changes to changes

 - Better location in sidebar
 - Changes to move what is json schema into getting started
 - move page inside overview

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Added Use-cases page (#589)

* added use-cases page, modified card component

* fix

* Added some changes to better merge with the dev branch.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Change docs link

* fix: spacing between buttons  (#575)

* docs: added definition of json hyper-schema

* fixed

* fix: spacing b/w buttons

* fix: added spacing in mobile design

* fix: spacing on tablet screen

* fix: spacing on less than 300px screen

* community-page (#646)

* community-page

* Some final changes for the community page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Update Sidebar.tsx

* Add resources file

* Update Sidebar.tsx

* Update case-studies.json

* Text colours for dark theme

* New version of the implementers page

* Feat: Replacing Axios to fs fetching in resources page (#657)

* cleaning

* changing axios to fs

* Remove articles from sidebar

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improve Case Studies and Use Cases welcome messages

* adding codeowners

* Fixing bugs and adding back lost files

* fix sidebar dropdown for FAQ

* community page major changes and faq bug fix

* community page bug fixes and responsive issues in several pages

* Update index.page.tsx (#684)

* Update index.page.tsx

Edited the placeholder texts for the welcome page.

* fixed lint error

* Edited wordings for the Welcome page of release 3

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Remove data duplication and fix intro text

---------

Co-authored-by: Benjamin Granados <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Removing resources and newletter from web-release-3 branch (#698)

* removing newsletter

* removing resources

* removing resources.yml file

* removing resources from welcomee page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* case-studies bug fix and hover delay fix

* adding ts comment

* Small corrections

* Update blogs link

* Ambassadors button aligned to the left

* Feat: Fixing responsive bugs from community page

* community page bug fixes

* Added uses cases texts

* Last changes to use-cases

* Add html to the use cases definition

* feat:adding html parser for use-cases page

* removing links from images

* improved FAQ description text (#709)

* improved FAQ description text

* Updated FAQ general questions

* Updated FAQ description text for fix one-sentence bug

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/faq/index.page.tsx

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improvement for case studies

* merge confilts

* removing merge conflicts

* Fix:community card gap

* Align with main branch

* Align with main branch

* Align with main branch

* Update pages/overview/what-is-jsonschema.md

Co-authored-by: Ben Hutton <[email protected]>

* Remove welcome data file

* Move welcome outside overview section

* Change welcome text

* Feat: Replaced axios with fetch

* moved path to function

* Updating community filters

* Update pages/community/index.page.tsx

Co-authored-by: Ben Hutton <[email protected]>

* Fix the menu links

* Update the JSON Schema calendar link

* Change ambassadors image

---------

Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>
benjagm added a commit that referenced this pull request Jul 24, 2024
* chore(deps): bump eslint-plugin-react from 7.33.2 to 7.35.0 (#813)

Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.35.0.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.35.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump Renato66/auto-label from 3.0.0 to 3.1.0 (#809)

Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/renato66/auto-label/releases)
- [Commits](Renato66/auto-label@v3.0.0...v3.1.0)

---
updated-dependencies:
- dependency-name: Renato66/auto-label
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump eslint-plugin-n from 16.3.1 to 16.6.2 (#810)

Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.3.1 to 16.6.2.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@16.3.1...16.6.2)

---
updated-dependencies:
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump @types/react-syntax-highlighter (#812)

Bumps [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) from 15.5.10 to 15.5.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-syntax-highlighter)

---
updated-dependencies:
- dependency-name: "@types/react-syntax-highlighter"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump @docsearch/react from 3.5.2 to 3.6.1 (#811)

Bumps [@docsearch/react](https://github.com/algolia/docsearch) from 3.5.2 to 3.6.1.
- [Release notes](https://github.com/algolia/docsearch/releases)
- [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
- [Commits](algolia/docsearch@v3.5.2...v3.6.1)

---
updated-dependencies:
- dependency-name: "@docsearch/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Web release 3 (#655)

* Standardize List Display with Card Component (#433) (#460)

* Standardize List Display with Card Component (#433)

* Addressed comments, added images, and implemented new styles

* Increased padding on the x-axis

* feat: added Faq section (#534)

* Fix faq

* Added Case Studies page in Overview Section  (#473)

* updated UI of blog-page

* Added Case Studies Page

* fixed linting errors

* Added casestudies

* changing index.page.tsx

* Delete components/CustomComponent.tsx

* Delete pages/overview/casestudies.md

* removed unnecessary changes

* removed unnecessary files

* fixed bug

* removed changes

* removed unnecessary files

* Pushing last changes.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* feat: added resource section (#509)

* fixed

* feat: added resource section

* feat: added resource section

* revert changes cd6d848

* revert changes 65e9f3e

* revert changes 877b0f0

* revert changes 74711cd

* fix: fixed the width issue

* revert change

* fix: added resource icon

* Tiny changes to adjust look and feel.

* Last changes to fix dark theme

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Add the Newsletter feature to the website.  (#489)

* initialize the Test directory.

* Added the subscribe button.

* Added the subscribe page.

* Added the newsletter page.

* changed name to newsletter.

* removed the unwated code.

* removed the unwated components.

* decreased the horizontal width and changed the color.

* decreased the font size.

* Added the changes for the newsletter banner.

* Added the newletter component to landing page.

* added the color for input.

* Added the required horizontal padding.

* Added the required horizontal padding. for newsletter page.

* Add changes to make it work with mailchimp

* added the yarn file back.

* Added yarn.lock file.

* Update yarn.lock

* linted the newsletter.tsx

* linted newsletter

* fix the index.page

* Small improvement in page layout.

* Fix dark theme behavior

* .

---------

Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Added welcome page (#566)

* added welcome page

* Pushed some changes to changes

 - Better location in sidebar
 - Changes to move what is json schema into getting started
 - move page inside overview

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Added Use-cases page (#589)

* added use-cases page, modified card component

* fix

* Added some changes to better merge with the dev branch.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Change docs link

* fix: spacing between buttons  (#575)

* docs: added definition of json hyper-schema

* fixed

* fix: spacing b/w buttons

* fix: added spacing in mobile design

* fix: spacing on tablet screen

* fix: spacing on less than 300px screen

* community-page (#646)

* community-page

* Some final changes for the community page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Update Sidebar.tsx

* Add resources file

* Update Sidebar.tsx

* Update case-studies.json

* Text colours for dark theme

* New version of the implementers page

* Feat: Replacing Axios to fs fetching in resources page (#657)

* cleaning

* changing axios to fs

* Remove articles from sidebar

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improve Case Studies and Use Cases welcome messages

* adding codeowners

* Fixing bugs and adding back lost files

* fix sidebar dropdown for FAQ

* community page major changes and faq bug fix

* community page bug fixes and responsive issues in several pages

* Update index.page.tsx (#684)

* Update index.page.tsx

Edited the placeholder texts for the welcome page.

* fixed lint error

* Edited wordings for the Welcome page of release 3

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Remove data duplication and fix intro text

---------

Co-authored-by: Benjamin Granados <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Removing resources and newletter from web-release-3 branch (#698)

* removing newsletter

* removing resources

* removing resources.yml file

* removing resources from welcomee page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* case-studies bug fix and hover delay fix

* adding ts comment

* Small corrections

* Update blogs link

* Ambassadors button aligned to the left

* Feat: Fixing responsive bugs from community page

* community page bug fixes

* Added uses cases texts

* Last changes to use-cases

* Add html to the use cases definition

* feat:adding html parser for use-cases page

* removing links from images

* improved FAQ description text (#709)

* improved FAQ description text

* Updated FAQ general questions

* Updated FAQ description text for fix one-sentence bug

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/faq/index.page.tsx

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improvement for case studies

* merge confilts

* removing merge conflicts

* Fix:community card gap

* Align with main branch

* Align with main branch

* Align with main branch

* Update pages/overview/what-is-jsonschema.md

Co-authored-by: Ben Hutton <[email protected]>

* Remove welcome data file

* Move welcome outside overview section

* Change welcome text

* Feat: Replaced axios with fetch

* moved path to function

* Updating community filters

* Update pages/community/index.page.tsx

Co-authored-by: Ben Hutton <[email protected]>

* Fix the menu links

* Update the JSON Schema calendar link

* Change ambassadors image

---------

Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>

* Add docs help component (#820)

* Feat: Refactoring toc styles (#796)

* refactoring toc

* updating es

* adding heading

* adding heading

* New slack redirect

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>
benjagm added a commit that referenced this pull request Jul 29, 2024
commit 2e899cc
Author: Alok Gupta <[email protected]>
Date:   Mon Jul 29 16:12:12 2024 +0530

    chore(documentation) : updated docs for setting up environment variables (#797)

    * Added docs for setting up env variables

    * Updated env docs

commit b06a316
Author: Jason Desrosiers <[email protected]>
Date:   Mon Jul 29 03:41:28 2024 -0700

    Fix bundling docs bug (#822)

commit 9f65d1e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:32:33 2024 +0200

    chore(deps): bump @typescript-eslint/eslint-plugin from 6.13.1 to 6.21.0 (#833)

    Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.13.1 to 6.21.0.
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.21.0/packages/eslint-plugin)

    ---
    updated-dependencies:
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f49db67
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:32:14 2024 +0200

    chore(deps): bump husky from 9.0.11 to 9.1.3 (#834)

    Bumps [husky](https://github.com/typicode/husky) from 9.0.11 to 9.1.3.
    - [Release notes](https://github.com/typicode/husky/releases)
    - [Commits](typicode/husky@v9.0.11...v9.1.3)

    ---
    updated-dependencies:
    - dependency-name: husky
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f7407b8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:31:56 2024 +0200

    chore(deps): bump prettier from 3.2.5 to 3.3.3 (#835)

    Bumps [prettier](https://github.com/prettier/prettier) from 3.2.5 to 3.3.3.
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.2.5...3.3.3)

    ---
    updated-dependencies:
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit acb797e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:31:30 2024 +0200

    chore(deps): bump axios from 1.6.0 to 1.7.2 (#836)

    Bumps [axios](https://github.com/axios/axios) from 1.6.0 to 1.7.2.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](axios/axios@v1.6.0...v1.7.2)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 753017b
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 14:15:25 2024 +0200

    New slack redirect

commit 8f099f4
Author: Dhairya Majmudar <[email protected]>
Date:   Wed Jul 24 13:39:33 2024 +0530

    Feat: Refactoring toc styles (#796)

    * refactoring toc

    * updating es

    * adding heading

    * adding heading

commit 16369d3
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 09:46:39 2024 +0200

    Add docs help component (#820)

commit a58bd36
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 09:03:39 2024 +0200

    Web release 3 (#655)

    * Standardize List Display with Card Component (#433) (#460)

    * Standardize List Display with Card Component (#433)

    * Addressed comments, added images, and implemented new styles

    * Increased padding on the x-axis

    * feat: added Faq section (#534)

    * Fix faq

    * Added Case Studies page in Overview Section  (#473)

    * updated UI of blog-page

    * Added Case Studies Page

    * fixed linting errors

    * Added casestudies

    * changing index.page.tsx

    * Delete components/CustomComponent.tsx

    * Delete pages/overview/casestudies.md

    * removed unnecessary changes

    * removed unnecessary files

    * fixed bug

    * removed changes

    * removed unnecessary files

    * Pushing last changes.

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * feat: added resource section (#509)

    * fixed

    * feat: added resource section

    * feat: added resource section

    * revert changes cd6d848

    * revert changes 65e9f3e

    * revert changes 877b0f0

    * revert changes 74711cd

    * fix: fixed the width issue

    * revert change

    * fix: added resource icon

    * Tiny changes to adjust look and feel.

    * Last changes to fix dark theme

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Feat: Add the Newsletter feature to the website.  (#489)

    * initialize the Test directory.

    * Added the subscribe button.

    * Added the subscribe page.

    * Added the newsletter page.

    * changed name to newsletter.

    * removed the unwated code.

    * removed the unwated components.

    * decreased the horizontal width and changed the color.

    * decreased the font size.

    * Added the changes for the newsletter banner.

    * Added the newletter component to landing page.

    * added the color for input.

    * Added the required horizontal padding.

    * Added the required horizontal padding. for newsletter page.

    * Add changes to make it work with mailchimp

    * added the yarn file back.

    * Added yarn.lock file.

    * Update yarn.lock

    * linted the newsletter.tsx

    * linted newsletter

    * fix the index.page

    * Small improvement in page layout.

    * Fix dark theme behavior

    * .

    ---------

    Co-authored-by: AyushNautiyalDeveloper <[email protected]>
    Co-authored-by: Benjamin Granados <[email protected]>

    * Added welcome page (#566)

    * added welcome page

    * Pushed some changes to changes

     - Better location in sidebar
     - Changes to move what is json schema into getting started
     - move page inside overview

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Added Use-cases page (#589)

    * added use-cases page, modified card component

    * fix

    * Added some changes to better merge with the dev branch.

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Change docs link

    * fix: spacing between buttons  (#575)

    * docs: added definition of json hyper-schema

    * fixed

    * fix: spacing b/w buttons

    * fix: added spacing in mobile design

    * fix: spacing on tablet screen

    * fix: spacing on less than 300px screen

    * community-page (#646)

    * community-page

    * Some final changes for the community page

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update Sidebar.tsx

    * Add resources file

    * Update Sidebar.tsx

    * Update case-studies.json

    * Text colours for dark theme

    * New version of the implementers page

    * Feat: Replacing Axios to fs fetching in resources page (#657)

    * cleaning

    * changing axios to fs

    * Remove articles from sidebar

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Improve Case Studies and Use Cases welcome messages

    * adding codeowners

    * Fixing bugs and adding back lost files

    * fix sidebar dropdown for FAQ

    * community page major changes and faq bug fix

    * community page bug fixes and responsive issues in several pages

    * Update index.page.tsx (#684)

    * Update index.page.tsx

    Edited the placeholder texts for the welcome page.

    * fixed lint error

    * Edited wordings for the Welcome page of release 3

    * Update pages/overview/welcome/index.page.tsx

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update pages/overview/welcome/index.page.tsx

    Co-authored-by: Benjamin Granados <[email protected]>

    * Remove data duplication and fix intro text

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>
    Co-authored-by: Benjamin Granados <[email protected]>

    * Feat: Removing resources and newletter from web-release-3 branch (#698)

    * removing newsletter

    * removing resources

    * removing resources.yml file

    * removing resources from welcomee page

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * case-studies bug fix and hover delay fix

    * adding ts comment

    * Small corrections

    * Update blogs link

    * Ambassadors button aligned to the left

    * Feat: Fixing responsive bugs from community page

    * community page bug fixes

    * Added uses cases texts

    * Last changes to use-cases

    * Add html to the use cases definition

    * feat:adding html parser for use-cases page

    * removing links from images

    * improved FAQ description text (#709)

    * improved FAQ description text

    * Updated FAQ general questions

    * Updated FAQ description text for fix one-sentence bug

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update pages/overview/faq/index.page.tsx

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Improvement for case studies

    * merge confilts

    * removing merge conflicts

    * Fix:community card gap

    * Align with main branch

    * Align with main branch

    * Align with main branch

    * Update pages/overview/what-is-jsonschema.md

    Co-authored-by: Ben Hutton <[email protected]>

    * Remove welcome data file

    * Move welcome outside overview section

    * Change welcome text

    * Feat: Replaced axios with fetch

    * moved path to function

    * Updating community filters

    * Update pages/community/index.page.tsx

    Co-authored-by: Ben Hutton <[email protected]>

    * Fix the menu links

    * Update the JSON Schema calendar link

    * Change ambassadors image

    ---------

    Co-authored-by: Michael Obubelebra Amachree <[email protected]>
    Co-authored-by: Akshay Bagai <[email protected]>
    Co-authored-by: Tamanna <[email protected]>
    Co-authored-by: Ayush Nautiyal <[email protected]>
    Co-authored-by: AyushNautiyalDeveloper <[email protected]>
    Co-authored-by: VivekJaiswal18 <[email protected]>
    Co-authored-by: Neeraj Saini <[email protected]>
    Co-authored-by: Dhairya Majmudar <[email protected]>
    Co-authored-by: Dhairya Majmudar <[email protected]>
    Co-authored-by: Blessing Ene Anyebe <[email protected]>
    Co-authored-by: Ben Hutton <[email protected]>

commit aacf741
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:41:05 2024 +0200

    chore(deps): bump @docsearch/react from 3.5.2 to 3.6.1 (#811)

    Bumps [@docsearch/react](https://github.com/algolia/docsearch) from 3.5.2 to 3.6.1.
    - [Release notes](https://github.com/algolia/docsearch/releases)
    - [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
    - [Commits](algolia/docsearch@v3.5.2...v3.6.1)

    ---
    updated-dependencies:
    - dependency-name: "@docsearch/react"
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c90385b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:47 2024 +0200

    chore(deps): bump @types/react-syntax-highlighter (#812)

    Bumps [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) from 15.5.10 to 15.5.13.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-syntax-highlighter)

    ---
    updated-dependencies:
    - dependency-name: "@types/react-syntax-highlighter"
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit e78dfaf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:27 2024 +0200

    chore(deps): bump eslint-plugin-n from 16.3.1 to 16.6.2 (#810)

    Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.3.1 to 16.6.2.
    - [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
    - [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
    - [Commits](eslint-community/eslint-plugin-n@16.3.1...16.6.2)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-n
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 674943c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:03 2024 +0200

    chore(deps): bump Renato66/auto-label from 3.0.0 to 3.1.0 (#809)

    Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 3.0.0 to 3.1.0.
    - [Release notes](https://github.com/renato66/auto-label/releases)
    - [Commits](Renato66/auto-label@v3.0.0...v3.1.0)

    ---
    updated-dependencies:
    - dependency-name: Renato66/auto-label
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4d947f5
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:39:35 2024 +0200

    chore(deps): bump eslint-plugin-react from 7.33.2 to 7.35.0 (#813)

    Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.35.0.
    - [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
    - [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
    - [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.35.0)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-react
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit af4ba88
Author: Benjamin Granados <[email protected]>
Date:   Mon Jul 22 14:04:44 2024 +0200

    Add new sponsors (#814)

commit 71a18df
Author: Alok Gupta <[email protected]>
Date:   Tue Jul 16 22:08:08 2024 +0530

    Chore(github-actions) : add CI/CD workflows guidelines and improve naming conventions (#789)

    * chore(ci.yml) improve naming of ci.yml workflow

    * chore(issue.yml) : improve workflow steps, jobs name for better clarity and consistency

    * chore(link.yml & pr_target.yml) : Improve docs

    * renamed links.yml and stale.yml

    * Added workflow guidelines documentation

commit 10bb5d4
Author: Juan Cruz Viotti <[email protected]>
Date:   Tue Jul 16 12:35:24 2024 -0400

    Add JSON Toolkit as a C++ implementation (#761)

    Signed-off-by: Juan Cruz Viotti <[email protected]>

commit a842501
Author: Zeel Rajodiya <[email protected]>
Date:   Tue Jul 16 22:04:47 2024 +0530

    Enchantment Dark Mode Toggle shows a popup  (#735)

    * Refactor DarkModeToggle component to include a
    theme selection dropdown

    * Refactor DarkModeToggle component to include a
    theme selection dropdown

    Fix dark mode toggle icon rendering issue

commit eda0dcf
Author: Joost Holslag <[email protected]>
Date:   Tue Jul 16 18:31:38 2024 +0200

    remove trailing comma from getting-started-step-by-step.md (#800)

commit 8f18c3a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 18:29:22 2024 +0200

    chore(deps): bump react and @types/react (#744)

    Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together.

    Updates `react` from 18.2.0 to 18.3.1
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

    Updates `@types/react` from 18.2.37 to 18.3.3
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

    ---
    updated-dependencies:
    - dependency-name: react
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: "@types/react"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Benjamin Granados <[email protected]>

commit fa59c06
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:27:55 2024 +0200

    chore(deps): bump next from 14.1.1 to 14.2.5 (#794)

    Bumps [next](https://github.com/vercel/next.js) from 14.1.1 to 14.2.5.
    - [Release notes](https://github.com/vercel/next.js/releases)
    - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
    - [Commits](vercel/next.js@v14.1.1...v14.2.5)

    ---
    updated-dependencies:
    - dependency-name: next
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 43e3654
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:27:03 2024 +0200

    chore(deps): bump @types/node from 20.10.1 to 20.14.10 (#798)

    Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.1 to 20.14.10.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

    ---
    updated-dependencies:
    - dependency-name: "@types/node"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit d30dd69
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:26:31 2024 +0200

    chore(deps): bump markdown-to-jsx from 7.3.2 to 7.4.7 (#799)

    Bumps [markdown-to-jsx](https://github.com/quantizor/markdown-to-jsx) from 7.3.2 to 7.4.7.
    - [Release notes](https://github.com/quantizor/markdown-to-jsx/releases)
    - [Changelog](https://github.com/quantizor/markdown-to-jsx/blob/main/CHANGELOG.md)
    - [Commits](quantizor/markdown-to-jsx@v7.3.2...v7.4.7)

    ---
    updated-dependencies:
    - dependency-name: markdown-to-jsx
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 605bbb3
Author: Alok Gupta <[email protected]>
Date:   Tue Jul 16 19:19:49 2024 +0530

    Added two workflows for fetching contributor and project roadmap data (#781)

    * github-actions : added sync.contributors.yml

    * github-actions : Added sync-project-roadmap.yml

commit e9d84d0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Jul 11 08:21:52 2024 +0200

    chore(deps): bump next-themes from 0.2.1 to 0.3.0 (#743)

    Bumps [next-themes](https://github.com/pacocoursey/next-themes) from 0.2.1 to 0.3.0.
    - [Release notes](https://github.com/pacocoursey/next-themes/releases)
    - [Commits](https://github.com/pacocoursey/next-themes/commits/v0.3.0)

    ---
    updated-dependencies:
    - dependency-name: next-themes
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f7b499e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Jul 11 08:21:38 2024 +0200

    chore(deps): bump actions/github-script from 6 to 7 (#740)

    Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
    - [Release notes](https://github.com/actions/github-script/releases)
    - [Commits](actions/github-script@v6...v7)

    ---
    updated-dependencies:
    - dependency-name: actions/github-script
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 81de1e4
Author: Benjamin Granados <[email protected]>
Date:   Mon Jul 8 17:25:06 2024 +0200

    Add new sopnsor (#793)

commit 2b5b44e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 8 11:03:58 2024 +0200

    chore(deps): bump eslint-plugin-promise from 6.1.1 to 6.4.0 (#787)

    Bumps [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) from 6.1.1 to 6.4.0.
    - [Release notes](https://github.com/eslint-community/eslint-plugin-promise/releases)
    - [Changelog](https://github.com/eslint-community/eslint-plugin-promise/blob/main/CHANGELOG.md)
    - [Commits](eslint-community/eslint-plugin-promise@v6.1.1...v6.4.0)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-promise
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit ae2a377
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 8 11:02:13 2024 +0200

    chore(deps): bump Renato66/auto-label from 2.3.0 to 3.0.0 (#788)

    Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 2.3.0 to 3.0.0.
    - [Release notes](https://github.com/renato66/auto-label/releases)
    - [Commits](Renato66/auto-label@v2.3.0...v3.0.0)

    ---
    updated-dependencies:
    - dependency-name: Renato66/auto-label
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 7241449
Author: Tabah Baridule M <[email protected]>
Date:   Wed Jun 26 16:56:00 2024 +0100

    Update pages/understanding-json-schema/structuring.md

    Co-authored-by: Jason Desrosiers <[email protected]>

commit bd7ddb2
Author: Tabah Baridule M. <[email protected]>
Date:   Tue Jun 25 15:51:14 2024 +0100

    Update structuring.md

commit 3a29a33
Author: Tabah Baridule M. <[email protected]>
Date:   Tue Jun 25 15:49:36 2024 +0100

    The URI-references without fragment was remove

commit 43dd3f9
Author: Tabah Baridule M. <[email protected]>
Date:   Mon Apr 22 18:00:34 2024 +0100

    Updated the `$id` and included a Draft-specific info box section
benjagm added a commit that referenced this pull request Jul 29, 2024
* Feat: Rebuilding getting started component (#687)

* adding componet

* adding data

* connecting with data

* Pushed data changes

* Fix:getting started data fetching problem

* updating component rendering

* adjusting layout

* update: changing interating logics

* update: changing file location

* fix: minor fixes

* schema data fetching

* fixing workflow

* adding fetch testing

* replacing code editor

* feat: enabling instnaces and moving to new component

* fix: state rendering problem solved

* feat:adding text and icons

* fix: instances fix

* fixing text alignment

* fix: instances fix

* Refactoring and improvements

* removing some codes

* Refactoring component and bug fixes

* Add plausible events

* Update package.json

* adding better messaging

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Change font sizes for code editors

* feat: adding download button

* adding zip install

* added more examples

* Squashed commit of the following:

commit 2e899cc
Author: Alok Gupta <[email protected]>
Date:   Mon Jul 29 16:12:12 2024 +0530

    chore(documentation) : updated docs for setting up environment variables (#797)

    * Added docs for setting up env variables

    * Updated env docs

commit b06a316
Author: Jason Desrosiers <[email protected]>
Date:   Mon Jul 29 03:41:28 2024 -0700

    Fix bundling docs bug (#822)

commit 9f65d1e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:32:33 2024 +0200

    chore(deps): bump @typescript-eslint/eslint-plugin from 6.13.1 to 6.21.0 (#833)

    Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.13.1 to 6.21.0.
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.21.0/packages/eslint-plugin)

    ---
    updated-dependencies:
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f49db67
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:32:14 2024 +0200

    chore(deps): bump husky from 9.0.11 to 9.1.3 (#834)

    Bumps [husky](https://github.com/typicode/husky) from 9.0.11 to 9.1.3.
    - [Release notes](https://github.com/typicode/husky/releases)
    - [Commits](typicode/husky@v9.0.11...v9.1.3)

    ---
    updated-dependencies:
    - dependency-name: husky
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f7407b8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:31:56 2024 +0200

    chore(deps): bump prettier from 3.2.5 to 3.3.3 (#835)

    Bumps [prettier](https://github.com/prettier/prettier) from 3.2.5 to 3.3.3.
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.2.5...3.3.3)

    ---
    updated-dependencies:
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit acb797e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 29 12:31:30 2024 +0200

    chore(deps): bump axios from 1.6.0 to 1.7.2 (#836)

    Bumps [axios](https://github.com/axios/axios) from 1.6.0 to 1.7.2.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](axios/axios@v1.6.0...v1.7.2)

    ---
    updated-dependencies:
    - dependency-name: axios
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 753017b
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 14:15:25 2024 +0200

    New slack redirect

commit 8f099f4
Author: Dhairya Majmudar <[email protected]>
Date:   Wed Jul 24 13:39:33 2024 +0530

    Feat: Refactoring toc styles (#796)

    * refactoring toc

    * updating es

    * adding heading

    * adding heading

commit 16369d3
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 09:46:39 2024 +0200

    Add docs help component (#820)

commit a58bd36
Author: Benjamin Granados <[email protected]>
Date:   Wed Jul 24 09:03:39 2024 +0200

    Web release 3 (#655)

    * Standardize List Display with Card Component (#433) (#460)

    * Standardize List Display with Card Component (#433)

    * Addressed comments, added images, and implemented new styles

    * Increased padding on the x-axis

    * feat: added Faq section (#534)

    * Fix faq

    * Added Case Studies page in Overview Section  (#473)

    * updated UI of blog-page

    * Added Case Studies Page

    * fixed linting errors

    * Added casestudies

    * changing index.page.tsx

    * Delete components/CustomComponent.tsx

    * Delete pages/overview/casestudies.md

    * removed unnecessary changes

    * removed unnecessary files

    * fixed bug

    * removed changes

    * removed unnecessary files

    * Pushing last changes.

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * feat: added resource section (#509)

    * fixed

    * feat: added resource section

    * feat: added resource section

    * revert changes cd6d848

    * revert changes 65e9f3e

    * revert changes 877b0f0

    * revert changes 74711cd

    * fix: fixed the width issue

    * revert change

    * fix: added resource icon

    * Tiny changes to adjust look and feel.

    * Last changes to fix dark theme

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Feat: Add the Newsletter feature to the website.  (#489)

    * initialize the Test directory.

    * Added the subscribe button.

    * Added the subscribe page.

    * Added the newsletter page.

    * changed name to newsletter.

    * removed the unwated code.

    * removed the unwated components.

    * decreased the horizontal width and changed the color.

    * decreased the font size.

    * Added the changes for the newsletter banner.

    * Added the newletter component to landing page.

    * added the color for input.

    * Added the required horizontal padding.

    * Added the required horizontal padding. for newsletter page.

    * Add changes to make it work with mailchimp

    * added the yarn file back.

    * Added yarn.lock file.

    * Update yarn.lock

    * linted the newsletter.tsx

    * linted newsletter

    * fix the index.page

    * Small improvement in page layout.

    * Fix dark theme behavior

    * .

    ---------

    Co-authored-by: AyushNautiyalDeveloper <[email protected]>
    Co-authored-by: Benjamin Granados <[email protected]>

    * Added welcome page (#566)

    * added welcome page

    * Pushed some changes to changes

     - Better location in sidebar
     - Changes to move what is json schema into getting started
     - move page inside overview

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Added Use-cases page (#589)

    * added use-cases page, modified card component

    * fix

    * Added some changes to better merge with the dev branch.

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Change docs link

    * fix: spacing between buttons  (#575)

    * docs: added definition of json hyper-schema

    * fixed

    * fix: spacing b/w buttons

    * fix: added spacing in mobile design

    * fix: spacing on tablet screen

    * fix: spacing on less than 300px screen

    * community-page (#646)

    * community-page

    * Some final changes for the community page

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update Sidebar.tsx

    * Add resources file

    * Update Sidebar.tsx

    * Update case-studies.json

    * Text colours for dark theme

    * New version of the implementers page

    * Feat: Replacing Axios to fs fetching in resources page (#657)

    * cleaning

    * changing axios to fs

    * Remove articles from sidebar

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Improve Case Studies and Use Cases welcome messages

    * adding codeowners

    * Fixing bugs and adding back lost files

    * fix sidebar dropdown for FAQ

    * community page major changes and faq bug fix

    * community page bug fixes and responsive issues in several pages

    * Update index.page.tsx (#684)

    * Update index.page.tsx

    Edited the placeholder texts for the welcome page.

    * fixed lint error

    * Edited wordings for the Welcome page of release 3

    * Update pages/overview/welcome/index.page.tsx

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update pages/overview/welcome/index.page.tsx

    Co-authored-by: Benjamin Granados <[email protected]>

    * Remove data duplication and fix intro text

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>
    Co-authored-by: Benjamin Granados <[email protected]>

    * Feat: Removing resources and newletter from web-release-3 branch (#698)

    * removing newsletter

    * removing resources

    * removing resources.yml file

    * removing resources from welcomee page

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * case-studies bug fix and hover delay fix

    * adding ts comment

    * Small corrections

    * Update blogs link

    * Ambassadors button aligned to the left

    * Feat: Fixing responsive bugs from community page

    * community page bug fixes

    * Added uses cases texts

    * Last changes to use-cases

    * Add html to the use cases definition

    * feat:adding html parser for use-cases page

    * removing links from images

    * improved FAQ description text (#709)

    * improved FAQ description text

    * Updated FAQ general questions

    * Updated FAQ description text for fix one-sentence bug

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update data/faq.json

    Co-authored-by: Benjamin Granados <[email protected]>

    * Update pages/overview/faq/index.page.tsx

    ---------

    Co-authored-by: Benjamin Granados <[email protected]>

    * Improvement for case studies

    * merge confilts

    * removing merge conflicts

    * Fix:community card gap

    * Align with main branch

    * Align with main branch

    * Align with main branch

    * Update pages/overview/what-is-jsonschema.md

    Co-authored-by: Ben Hutton <[email protected]>

    * Remove welcome data file

    * Move welcome outside overview section

    * Change welcome text

    * Feat: Replaced axios with fetch

    * moved path to function

    * Updating community filters

    * Update pages/community/index.page.tsx

    Co-authored-by: Ben Hutton <[email protected]>

    * Fix the menu links

    * Update the JSON Schema calendar link

    * Change ambassadors image

    ---------

    Co-authored-by: Michael Obubelebra Amachree <[email protected]>
    Co-authored-by: Akshay Bagai <[email protected]>
    Co-authored-by: Tamanna <[email protected]>
    Co-authored-by: Ayush Nautiyal <[email protected]>
    Co-authored-by: AyushNautiyalDeveloper <[email protected]>
    Co-authored-by: VivekJaiswal18 <[email protected]>
    Co-authored-by: Neeraj Saini <[email protected]>
    Co-authored-by: Dhairya Majmudar <[email protected]>
    Co-authored-by: Dhairya Majmudar <[email protected]>
    Co-authored-by: Blessing Ene Anyebe <[email protected]>
    Co-authored-by: Ben Hutton <[email protected]>

commit aacf741
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:41:05 2024 +0200

    chore(deps): bump @docsearch/react from 3.5.2 to 3.6.1 (#811)

    Bumps [@docsearch/react](https://github.com/algolia/docsearch) from 3.5.2 to 3.6.1.
    - [Release notes](https://github.com/algolia/docsearch/releases)
    - [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
    - [Commits](algolia/docsearch@v3.5.2...v3.6.1)

    ---
    updated-dependencies:
    - dependency-name: "@docsearch/react"
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c90385b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:47 2024 +0200

    chore(deps): bump @types/react-syntax-highlighter (#812)

    Bumps [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) from 15.5.10 to 15.5.13.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-syntax-highlighter)

    ---
    updated-dependencies:
    - dependency-name: "@types/react-syntax-highlighter"
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit e78dfaf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:27 2024 +0200

    chore(deps): bump eslint-plugin-n from 16.3.1 to 16.6.2 (#810)

    Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.3.1 to 16.6.2.
    - [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
    - [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
    - [Commits](eslint-community/eslint-plugin-n@16.3.1...16.6.2)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-n
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 674943c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:40:03 2024 +0200

    chore(deps): bump Renato66/auto-label from 3.0.0 to 3.1.0 (#809)

    Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 3.0.0 to 3.1.0.
    - [Release notes](https://github.com/renato66/auto-label/releases)
    - [Commits](Renato66/auto-label@v3.0.0...v3.1.0)

    ---
    updated-dependencies:
    - dependency-name: Renato66/auto-label
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4d947f5
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 24 08:39:35 2024 +0200

    chore(deps): bump eslint-plugin-react from 7.33.2 to 7.35.0 (#813)

    Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.35.0.
    - [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
    - [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
    - [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.35.0)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-react
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit af4ba88
Author: Benjamin Granados <[email protected]>
Date:   Mon Jul 22 14:04:44 2024 +0200

    Add new sponsors (#814)

commit 71a18df
Author: Alok Gupta <[email protected]>
Date:   Tue Jul 16 22:08:08 2024 +0530

    Chore(github-actions) : add CI/CD workflows guidelines and improve naming conventions (#789)

    * chore(ci.yml) improve naming of ci.yml workflow

    * chore(issue.yml) : improve workflow steps, jobs name for better clarity and consistency

    * chore(link.yml & pr_target.yml) : Improve docs

    * renamed links.yml and stale.yml

    * Added workflow guidelines documentation

commit 10bb5d4
Author: Juan Cruz Viotti <[email protected]>
Date:   Tue Jul 16 12:35:24 2024 -0400

    Add JSON Toolkit as a C++ implementation (#761)

    Signed-off-by: Juan Cruz Viotti <[email protected]>

commit a842501
Author: Zeel Rajodiya <[email protected]>
Date:   Tue Jul 16 22:04:47 2024 +0530

    Enchantment Dark Mode Toggle shows a popup  (#735)

    * Refactor DarkModeToggle component to include a
    theme selection dropdown

    * Refactor DarkModeToggle component to include a
    theme selection dropdown

    Fix dark mode toggle icon rendering issue

commit eda0dcf
Author: Joost Holslag <[email protected]>
Date:   Tue Jul 16 18:31:38 2024 +0200

    remove trailing comma from getting-started-step-by-step.md (#800)

commit 8f18c3a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 18:29:22 2024 +0200

    chore(deps): bump react and @types/react (#744)

    Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together.

    Updates `react` from 18.2.0 to 18.3.1
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

    Updates `@types/react` from 18.2.37 to 18.3.3
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

    ---
    updated-dependencies:
    - dependency-name: react
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: "@types/react"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Benjamin Granados <[email protected]>

commit fa59c06
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:27:55 2024 +0200

    chore(deps): bump next from 14.1.1 to 14.2.5 (#794)

    Bumps [next](https://github.com/vercel/next.js) from 14.1.1 to 14.2.5.
    - [Release notes](https://github.com/vercel/next.js/releases)
    - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
    - [Commits](vercel/next.js@v14.1.1...v14.2.5)

    ---
    updated-dependencies:
    - dependency-name: next
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 43e3654
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:27:03 2024 +0200

    chore(deps): bump @types/node from 20.10.1 to 20.14.10 (#798)

    Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.1 to 20.14.10.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

    ---
    updated-dependencies:
    - dependency-name: "@types/node"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit d30dd69
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 16 16:26:31 2024 +0200

    chore(deps): bump markdown-to-jsx from 7.3.2 to 7.4.7 (#799)

    Bumps [markdown-to-jsx](https://github.com/quantizor/markdown-to-jsx) from 7.3.2 to 7.4.7.
    - [Release notes](https://github.com/quantizor/markdown-to-jsx/releases)
    - [Changelog](https://github.com/quantizor/markdown-to-jsx/blob/main/CHANGELOG.md)
    - [Commits](quantizor/markdown-to-jsx@v7.3.2...v7.4.7)

    ---
    updated-dependencies:
    - dependency-name: markdown-to-jsx
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 605bbb3
Author: Alok Gupta <[email protected]>
Date:   Tue Jul 16 19:19:49 2024 +0530

    Added two workflows for fetching contributor and project roadmap data (#781)

    * github-actions : added sync.contributors.yml

    * github-actions : Added sync-project-roadmap.yml

commit e9d84d0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Jul 11 08:21:52 2024 +0200

    chore(deps): bump next-themes from 0.2.1 to 0.3.0 (#743)

    Bumps [next-themes](https://github.com/pacocoursey/next-themes) from 0.2.1 to 0.3.0.
    - [Release notes](https://github.com/pacocoursey/next-themes/releases)
    - [Commits](https://github.com/pacocoursey/next-themes/commits/v0.3.0)

    ---
    updated-dependencies:
    - dependency-name: next-themes
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f7b499e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Jul 11 08:21:38 2024 +0200

    chore(deps): bump actions/github-script from 6 to 7 (#740)

    Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
    - [Release notes](https://github.com/actions/github-script/releases)
    - [Commits](actions/github-script@v6...v7)

    ---
    updated-dependencies:
    - dependency-name: actions/github-script
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 81de1e4
Author: Benjamin Granados <[email protected]>
Date:   Mon Jul 8 17:25:06 2024 +0200

    Add new sopnsor (#793)

commit 2b5b44e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 8 11:03:58 2024 +0200

    chore(deps): bump eslint-plugin-promise from 6.1.1 to 6.4.0 (#787)

    Bumps [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) from 6.1.1 to 6.4.0.
    - [Release notes](https://github.com/eslint-community/eslint-plugin-promise/releases)
    - [Changelog](https://github.com/eslint-community/eslint-plugin-promise/blob/main/CHANGELOG.md)
    - [Commits](eslint-community/eslint-plugin-promise@v6.1.1...v6.4.0)

    ---
    updated-dependencies:
    - dependency-name: eslint-plugin-promise
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit ae2a377
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 8 11:02:13 2024 +0200

    chore(deps): bump Renato66/auto-label from 2.3.0 to 3.0.0 (#788)

    Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 2.3.0 to 3.0.0.
    - [Release notes](https://github.com/renato66/auto-label/releases)
    - [Commits](Renato66/auto-label@v2.3.0...v3.0.0)

    ---
    updated-dependencies:
    - dependency-name: Renato66/auto-label
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 7241449
Author: Tabah Baridule M <[email protected]>
Date:   Wed Jun 26 16:56:00 2024 +0100

    Update pages/understanding-json-schema/structuring.md

    Co-authored-by: Jason Desrosiers <[email protected]>

commit bd7ddb2
Author: Tabah Baridule M. <[email protected]>
Date:   Tue Jun 25 15:51:14 2024 +0100

    Update structuring.md

commit 3a29a33
Author: Tabah Baridule M. <[email protected]>
Date:   Tue Jun 25 15:49:36 2024 +0100

    The URI-references without fragment was remove

commit 43dd3f9
Author: Tabah Baridule M. <[email protected]>
Date:   Mon Apr 22 18:00:34 2024 +0100

    Updated the `$id` and included a Draft-specific info box section

---------

Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
benjagm added a commit that referenced this pull request Oct 2, 2024
* Rebase with main (#821)

* chore(deps): bump eslint-plugin-react from 7.33.2 to 7.35.0 (#813)

Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.35.0.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.35.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump Renato66/auto-label from 3.0.0 to 3.1.0 (#809)

Bumps [Renato66/auto-label](https://github.com/renato66/auto-label) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/renato66/auto-label/releases)
- [Commits](Renato66/auto-label@v3.0.0...v3.1.0)

---
updated-dependencies:
- dependency-name: Renato66/auto-label
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump eslint-plugin-n from 16.3.1 to 16.6.2 (#810)

Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.3.1 to 16.6.2.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@16.3.1...16.6.2)

---
updated-dependencies:
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump @types/react-syntax-highlighter (#812)

Bumps [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) from 15.5.10 to 15.5.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-syntax-highlighter)

---
updated-dependencies:
- dependency-name: "@types/react-syntax-highlighter"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump @docsearch/react from 3.5.2 to 3.6.1 (#811)

Bumps [@docsearch/react](https://github.com/algolia/docsearch) from 3.5.2 to 3.6.1.
- [Release notes](https://github.com/algolia/docsearch/releases)
- [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
- [Commits](algolia/docsearch@v3.5.2...v3.6.1)

---
updated-dependencies:
- dependency-name: "@docsearch/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Web release 3 (#655)

* Standardize List Display with Card Component (#433) (#460)

* Standardize List Display with Card Component (#433)

* Addressed comments, added images, and implemented new styles

* Increased padding on the x-axis

* feat: added Faq section (#534)

* Fix faq

* Added Case Studies page in Overview Section  (#473)

* updated UI of blog-page

* Added Case Studies Page

* fixed linting errors

* Added casestudies

* changing index.page.tsx

* Delete components/CustomComponent.tsx

* Delete pages/overview/casestudies.md

* removed unnecessary changes

* removed unnecessary files

* fixed bug

* removed changes

* removed unnecessary files

* Pushing last changes.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* feat: added resource section (#509)

* fixed

* feat: added resource section

* feat: added resource section

* revert changes cd6d848

* revert changes 65e9f3e

* revert changes 877b0f0

* revert changes 74711cd

* fix: fixed the width issue

* revert change

* fix: added resource icon

* Tiny changes to adjust look and feel.

* Last changes to fix dark theme

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Add the Newsletter feature to the website.  (#489)

* initialize the Test directory.

* Added the subscribe button.

* Added the subscribe page.

* Added the newsletter page.

* changed name to newsletter.

* removed the unwated code.

* removed the unwated components.

* decreased the horizontal width and changed the color.

* decreased the font size.

* Added the changes for the newsletter banner.

* Added the newletter component to landing page.

* added the color for input.

* Added the required horizontal padding.

* Added the required horizontal padding. for newsletter page.

* Add changes to make it work with mailchimp

* added the yarn file back.

* Added yarn.lock file.

* Update yarn.lock

* linted the newsletter.tsx

* linted newsletter

* fix the index.page

* Small improvement in page layout.

* Fix dark theme behavior

* .

---------

Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Added welcome page (#566)

* added welcome page

* Pushed some changes to changes

 - Better location in sidebar
 - Changes to move what is json schema into getting started
 - move page inside overview

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Added Use-cases page (#589)

* added use-cases page, modified card component

* fix

* Added some changes to better merge with the dev branch.

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Change docs link

* fix: spacing between buttons  (#575)

* docs: added definition of json hyper-schema

* fixed

* fix: spacing b/w buttons

* fix: added spacing in mobile design

* fix: spacing on tablet screen

* fix: spacing on less than 300px screen

* community-page (#646)

* community-page

* Some final changes for the community page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Update Sidebar.tsx

* Add resources file

* Update Sidebar.tsx

* Update case-studies.json

* Text colours for dark theme

* New version of the implementers page

* Feat: Replacing Axios to fs fetching in resources page (#657)

* cleaning

* changing axios to fs

* Remove articles from sidebar

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improve Case Studies and Use Cases welcome messages

* adding codeowners

* Fixing bugs and adding back lost files

* fix sidebar dropdown for FAQ

* community page major changes and faq bug fix

* community page bug fixes and responsive issues in several pages

* Update index.page.tsx (#684)

* Update index.page.tsx

Edited the placeholder texts for the welcome page.

* fixed lint error

* Edited wordings for the Welcome page of release 3

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/welcome/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Remove data duplication and fix intro text

---------

Co-authored-by: Benjamin Granados <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* Feat: Removing resources and newletter from web-release-3 branch (#698)

* removing newsletter

* removing resources

* removing resources.yml file

* removing resources from welcomee page

---------

Co-authored-by: Benjamin Granados <[email protected]>

* case-studies bug fix and hover delay fix

* adding ts comment

* Small corrections

* Update blogs link

* Ambassadors button aligned to the left

* Feat: Fixing responsive bugs from community page

* community page bug fixes

* Added uses cases texts

* Last changes to use-cases

* Add html to the use cases definition

* feat:adding html parser for use-cases page

* removing links from images

* improved FAQ description text (#709)

* improved FAQ description text

* Updated FAQ general questions

* Updated FAQ description text for fix one-sentence bug

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update data/faq.json

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/overview/faq/index.page.tsx

---------

Co-authored-by: Benjamin Granados <[email protected]>

* Improvement for case studies

* merge confilts

* removing merge conflicts

* Fix:community card gap

* Align with main branch

* Align with main branch

* Align with main branch

* Update pages/overview/what-is-jsonschema.md

Co-authored-by: Ben Hutton <[email protected]>

* Remove welcome data file

* Move welcome outside overview section

* Change welcome text

* Feat: Replaced axios with fetch

* moved path to function

* Updating community filters

* Update pages/community/index.page.tsx

Co-authored-by: Ben Hutton <[email protected]>

* Fix the menu links

* Update the JSON Schema calendar link

* Change ambassadors image

---------

Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>

* Add docs help component (#820)

* Feat: Refactoring toc styles (#796)

* refactoring toc

* updating es

* adding heading

* adding heading

* New slack redirect

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>

* Feat: Adding next-prev component (#807)

* feat: next-prev-comp inital

* activating buttons

* New spec page structure- (#823)

* Spec draft fixes

* Updating draft sections

* metadata syntax fixes

* modified spec docs

* adding table component

* adding title

* Spec draft fixes-2

* Spec draft fixes-3

* doc-table

* fixing draft7

* draft7 fix

* converting in links

* adding multiple files

* Spec draft fixes-4

* Spec draft fixes-5

* Spec draft fixes-6

* Modified spec page

* Modified json hyper-schema page

* Resolved feedbacks

* Update pages/draft-06/json-schema-release-notes.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/draft/2019-09/release-notes.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/draft-07/json-schema-release-notes.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/migration/index.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/draft-07/index.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/migration/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update components/Sidebar.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/release-notes/index.page.tsx

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/release-notes/index.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/draft-06/index.md

Co-authored-by: Benjamin Granados <[email protected]>

* Update pages/draft-05/index.md

Co-authored-by: Benjamin Granados <[email protected]>

* modified meta-schema and specification links for all drafts

* Multiple changes

* Updated JSON Hyperschema introductory text

* updated URL redirects

* Fix date formats, redirects and broken links

---------

Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Benjamin Granados <[email protected]>

* fix merge issues

* fix merge issues

* Fix the usage of feedback component

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Obubelebra Amachree <[email protected]>
Co-authored-by: Akshay Bagai <[email protected]>
Co-authored-by: Tamanna <[email protected]>
Co-authored-by: Ayush Nautiyal <[email protected]>
Co-authored-by: AyushNautiyalDeveloper <[email protected]>
Co-authored-by: VivekJaiswal18 <[email protected]>
Co-authored-by: Neeraj Saini <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Dhairya Majmudar <[email protected]>
Co-authored-by: Blessing Ene Anyebe <[email protected]>
Co-authored-by: Ben Hutton <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

✨ Enhancement: Create a card component to be able to standarize the usage of list of cards
3 participants