Skip to content

Commit d8ef58c

Browse files
kwennBbenjagm
andauthored
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]>
1 parent 515f95c commit d8ef58c

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

data/welcome.json

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[
22
{
33
"title": "Overview",
4-
"summary": "Ut minim anim non deserunt veniam. Ex sit eu voluptate labore sunt aute ",
4+
"summary":
5+
"Our Overview provides a high level view of the project, its benefits, the roadmap and other relevant details.",
56
"logo": "/icons/eye.svg",
67
"links": {
78
"lang": "URL1",
@@ -10,7 +11,8 @@
1011
},
1112
{
1213
"title": "Getting Started",
13-
"summary": "Sit anim eu sunt nisi. Tempor cupidatat voluptate nostrud voluptate deserunt cupidatat dolor magna irure deserunt.",
14+
"summary":
15+
"Our Getting Started guide walks you through the basics of JSON Schema.",
1416
"logo": "/icons/compass.svg",
1517
"links": {
1618
"lang": "URL1",
@@ -19,7 +21,8 @@
1921
},
2022
{
2123
"title": "Reference",
22-
"summary": "Adipisicing minim ex amet occaecat dolore quis nisi voluptate sit.",
24+
"summary":
25+
"Our Reference teaches JSON Schema deeply from a beginner to the advanced level.",
2326
"logo": "/icons/book.svg",
2427
"links": {
2528
"lang": "URL1",
@@ -28,20 +31,12 @@
2831
},
2932
{
3033
"title": "Specification",
31-
"summary": "Deserunt et fugiat do adipisicing enim in nostrud Lorem anim ut amet enim.",
34+
"summary":
35+
"Our Specification section documents all versions of JSON Schema specification.",
3236
"logo": "/icons/clipboard.svg",
3337
"links": {
3438
"lang": "URL1",
3539
"url": "/specification"
3640
}
37-
},
38-
{
39-
"title": "Other Resources",
40-
"summary": "Deserunt et fugiat do adipisicing enim in nostrud Lorem anim ut amet enim.",
41-
"logo": "/icons/bookshelf.svg",
42-
"links": {
43-
"lang": "URL1",
44-
"url": "/resources/books"
45-
}
4641
}
4742
]

pages/overview/welcome/index.page.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,21 @@ import data from '~/data/welcome.json';
88

99
export default function Welcome() {
1010
const newTitle = 'Welcome';
11-
1211
return (
1312
<SectionContext.Provider value='docs'>
1413
<Head>
1514
<title>{newTitle}</title>
1615
</Head>
1716
<Headline1>{newTitle}</Headline1>
1817
<p>
19-
Veniam ea fugiat exercitation laboris non est nulla id pariatur ex. Qui
20-
occaecat fugiat sunt exercitation adipisicing culpa reprehenderit
21-
consectetur amet in. Qui fugiat amet do eu.
18+
JSON Schema is a powerful standard for validating the structure of JSON
19+
data. It effectively helps you to annotate and validate the structure,
20+
constraints, and data types of your JSON documents. Our goal is to
21+
provide a standardized means for you to define the expectations of your
22+
JSON data.
23+
<br />
24+
<br />
25+
<span className='font-bold text-[1.3rem]'>Explore the docs</span>
2226
</p>
2327
<div className='w-full lg:w-full grid grid-cols-1 sm:grid-cols-2 gap-6 my-[10px] mx-auto mt-8'>
2428
{data.map((element: any, index: any) => (

0 commit comments

Comments
 (0)