Skip to content
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

Update index.page.tsx #684

Merged
merged 7 commits into from
May 23, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions pages/overview/welcome/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Welcome() {
{
title: 'Overview',
summary:
'Ut minim anim non deserunt veniam. Ex sit eu voluptate labore sunt aute ',
'Our Overview provides a high level view of the project, its benefits, the roadmap and other relevant details.',
logo: '/icons/eye.svg',
links: {
lang: 'URL1',
Expand All @@ -21,7 +21,7 @@ export default function Welcome() {
{
title: 'Getting Started',
summary:
'Sit anim eu sunt nisi. Tempor cupidatat voluptate nostrud voluptate deserunt cupidatat dolor magna irure deserunt.',
'Our Getting Started guide walks you through the basics of JSON Schema.',
logo: '/icons/compass.svg',
links: {
lang: 'URL1',
Expand All @@ -31,7 +31,7 @@ export default function Welcome() {
{
title: 'Reference',
summary:
'Adipisicing minim ex amet occaecat dolore quis nisi voluptate sit.',
'Our Reference teaches JSON Schema deeply from a beginner to the advanced level.',
logo: '/icons/book.svg',
links: {
lang: 'URL1',
Expand All @@ -41,7 +41,7 @@ export default function Welcome() {
{
title: 'Specification',
summary:
'Deserunt et fugiat do adipisicing enim in nostrud Lorem anim ut amet enim.',
'Our Specification section documents all versions of JSON Schema specification.',
logo: '/icons/clipboard.svg',
links: {
lang: 'URL1',
Expand All @@ -51,7 +51,7 @@ export default function Welcome() {
{
title: 'Other Resources',
summary:
'Deserunt et fugiat do adipisicing enim in nostrud Lorem anim ut amet enim.',
'Explore our different resources, books, articles, courses, videos, podcasts, and papers, we welcome you to enjoy them.',
kwennB marked this conversation as resolved.
Show resolved Hide resolved
logo: '/icons/bookshelf.svg',
links: {
lang: 'URL1',
Expand All @@ -66,9 +66,11 @@ export default function Welcome() {
</Head>
<Headline1>{newTitle}</Headline1>
<p>
Veniam ea fugiat exercitation laboris non est nulla id pariatur ex. Qui
occaecat fugiat sunt exercitation adipisicing culpa reprehenderit
consectetur amet in. Qui fugiat amet do eu.
JSON Schema is a powerful tool for validating the structure of JSON
data. It effectively helps you to annotate and validate the structure,
constraints, and data types of your JSON documents. Our goal is to
provide a standardized means for you to define the expectations of your
JSON data.
kwennB marked this conversation as resolved.
Show resolved Hide resolved
</p>
<div className='w-full lg:w-full grid grid-cols-1 md:grid-cols-2 gap-6 my-[10px] mx-auto mt-8'>
{data.map((element: any, index: any) => (
Expand Down