Skip to content

Added Case Studies page in Overview Section #473

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 13 commits into from
Mar 20, 2024

Conversation

TamannaVerma99
Copy link
Contributor

What kind of change does this PR introduce?
Added a new page in Overview section to show the case studies published in the blog. Currently, since I don't have access to the data file that has information related to blogs published, I have created a sample file of my own named casestudies.json with the same data format as mentioned in the issue and linked it to the card component. This makes the JSON file easily replaceable with the type of data we'll be using.

Issue Number:

Does this PR introduce a breaking change?
No

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.

This a really great first draft TamannaVerma99 !!!

I am leaving some comments to reorganize the solution but great job so far. Remember we'll use the card component that is being in process in #433

@@ -284,6 +286,7 @@ export const DocsNav = () => {
label='Similar Technologies'
/>
<DocLink uri='/overview/code-of-conduct' label='Code of Conduct' />
<DocLink uri='/overview/casestudies' label='Casestudies' />
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
<DocLink uri='/overview/casestudies' label='Casestudies' />
<DocLink uri='/overview/casestudies' label='Case Studies' />

@@ -0,0 +1,7 @@
---
Copy link
Collaborator

Choose a reason for hiding this comment

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

Instead of md file i think it will be better to create a tsx file this way: pages/overview/casestudies/index.page.tsx.

See an example of this type of page in the sponsors page inside overview. You can have the title and intro paragraph in a md file and later put the grid code in the tsx page. See implementations page for inspiration.

@@ -0,0 +1,24 @@
import React from 'react';
Copy link
Collaborator

Choose a reason for hiding this comment

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

Instead of a component for the whole list, we will be using a standard component created in this PR:#433

I think you are not going to need to create a component, instead use the one created by Michael-Obele in #433.

The logic to build the grid is something you will add in pages/overview/casestudies/index.page.tsx.

@TamannaVerma99
Copy link
Contributor Author

Thanks @benjagm !
I just want to reconfirm are we going to use standardized cards for this page too?As in the issue you mentioned we are not going to use standardized cards we are instead going to use them for welcome page.
I am working on other feedbacks you have given.Thanks :)

@benjagm
Copy link
Collaborator

benjagm commented Mar 6, 2024

Thanks @benjagm ! I just want to reconfirm are we going to use standardized cards for this page too?As in the issue you mentioned we are not going to use standardized cards we are instead going to use them for welcome page. I am working on other feedbacks you have given.Thanks :)

Thanks! In the initial requirements of this issue we did not speak about common card component, however I did it in this other comment of that issue. I realized that 3 people were working in a very similar problem so is better to standarize and reuse.

#433 (comment)

@benjagm benjagm mentioned this pull request Mar 6, 2024
35 tasks
@benjagm benjagm added this to the Docs Release 3 milestone Mar 6, 2024
@TamannaVerma99 TamannaVerma99 changed the base branch from main to web-release-3 March 7, 2024 14:19
@TamannaVerma99
Copy link
Contributor Author

Made the required changes @benjagm .
However, since I am unable to view the new web3-release-branch in my forked repo, pulling changes from that branch is a difficult affair. Also, even though the card component already exists merged in the target branch, it still shows the same as a new addition in my PR which am unable to understand. Rest, the working is completely fine.

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.

Amazing progress. We are really close.

Left some comments. There is extra space after the blue footer that we need to avoid. We fixed it for other pages some days ago.

Have you done a rebase to bring the changes from the new parent branch?

@@ -0,0 +1,59 @@
[
Copy link
Collaborator

Choose a reason for hiding this comment

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

Can you please build a real data set with our case studies? This is the list:
https://json-schema.org/blog?type=Case%20Study

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hey @benjagm
where do we want to direct the link we are adding in each casestudy card? According to card's implementation the link I am adding is shown as read more.
e.g if I have added homepage url in link prop of card it is showing read more and on clicking read more i am directed to home page.

Copy link
Collaborator

Choose a reason for hiding this comment

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

where do we want to direct the link we are adding in each casestudy card?

The url will be the case study blog post.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Okay! Got it

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hey @benjagm I have some doubts regarding data set
What are we going to add at the place of logo and are we going to add complete title of blog post if yes then it will be too large because in the implementation of card title it is made by using h3 so how should I proceed with it.

Copy link
Collaborator

Choose a reason for hiding this comment

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

We need to find the company logos and add them to the folder: https://github.com/json-schema-org/website/tree/main/public/img/logos

Copy link
Contributor Author

Choose a reason for hiding this comment

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

okay! and what about the size of card title do I need to change the card component?

Copy link
Collaborator

Choose a reason for hiding this comment

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

Why changing the size of the card? Try to use this one and if you need to make some adjustments do it but just for the card features that you need. Remember that the card is now going to be used in 3 different pages.

For example you can change the logo size or fix a bug but not the whole card component without reason. Right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sorry for the confusion @benjagm
I am not asking to change the card size but the bug is related to title if I directly put title in this component it will look like this

cr

It is because title is written with h3 size in card component.
I will definitely not change the card component directly but if there is no other way I will just make a copy of this component and make changes to that one .

Copy link
Collaborator

Choose a reason for hiding this comment

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

In this case feel free to modify it

@@ -164,7 +164,12 @@ const MainNavigation = () => {
isActive={section === 'community'}
/>
<div className='flex max-sm:ml-4 items-center gap-6 md:gap-4'>
<div className='flex justify-center rounded border-2 border-gray-100 ml-0 w-[120px] md:w-full'>
<div
Copy link
Collaborator

Choose a reason for hiding this comment

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

You don't need to edit this page.

@@ -0,0 +1,53 @@
import React from 'react';
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please use the Card component available in the branch and modify it if necessary.

@@ -0,0 +1,4 @@
../../../_includes/community/programs/casestudies/casestudies.md
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please remove this md file. Let's put all the content in the tsx page.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Working on it :)

import { SectionContext } from '~/context';
import data from 'data/casestudies.json';
import Card from '~/components/Card';
export async function getStaticProps() {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Let's not use a md file here. Let's add all the content here.

<title>{newTitle}</title>
</Head>
<Headline1>{newTitle}</Headline1>
<StyledMarkdown markdown={blocks[0]} />
Copy link
Collaborator

Choose a reason for hiding this comment

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

It will be great to have a title and an intro paragraph. You can use the typical lorem ipsum.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for the feedback :)
I will soon implement all the points mentioned above.

@TamannaVerma99
Copy link
Contributor Author

Hey @benjagm .
Because of the issues caused in this PR since the branch was based on main instead of web-release-3.0, I have now created a new PR #540 with all the recommended changes. I would suggest closing this PR hereafter, and continuing our discussions on the other one. Thanks!

@TamannaVerma99 TamannaVerma99 requested a review from a team as a code owner March 20, 2024 09:36
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.

Amazing job!!! This is ready to go to the dev branch. I pushed some code to make some adjustments with the logos but really great work.

Congrats!!!!

@benjagm benjagm merged commit ee6bfdf into json-schema-org:web-release-3 Mar 20, 2024
@TamannaVerma99
Copy link
Contributor Author

Amazing job!!! This is ready to go to the dev branch. I pushed some code to make some adjustments with the logos but really great work.

Congrats!!!!

Thanks:)

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.

2 participants