-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
673 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import { FunctionComponent } from 'react'; | ||
import Card from '../../components/card'; | ||
import Hero from '../../components/hero'; | ||
import Meta from '../../components/meta'; | ||
import Layout from '../../layout/layout'; | ||
|
||
const tools = [ | ||
{ | ||
title: 'JSON validator', | ||
description: 'Validate your JSON online and get detailed error messages', | ||
links: [{ src: '/tools/json-validator/', text: 'Validate' }], | ||
imageSrc: '/images/illustrations/json-valid.svg' | ||
}, | ||
{ | ||
title: 'XML validator', | ||
description: 'Validate your XML online and get detailed error messages', | ||
links: [{ src: '/tools/xml-validator/', text: 'Validate' }], | ||
imageSrc: '/images/illustrations/xml-valid.svg' | ||
}, | ||
{ | ||
title: 'XML to JSON converter', | ||
description: | ||
'Convert your XML data to a JSON object and verify its validity', | ||
links: [{ src: '/tools/xml-to-json', text: 'Convert' }], | ||
imageSrc: '/images/illustrations/xml-to-json.svg' | ||
} | ||
]; | ||
|
||
const Tools: FunctionComponent = function () { | ||
return ( | ||
<Layout footerBanner='download'> | ||
<Meta | ||
title={'Mockoon useful tools'} | ||
description='Discover our set of useful tools to help you with your API development and testing: XML to JSON converter, JSON validator, XML validator' | ||
/> | ||
|
||
<Hero | ||
title='🛠️ Mockoon <span class="text-primary">useful tools</span>' | ||
subtitle='Discover our set of useful tools to help you with your API development and testing' | ||
/> | ||
|
||
<section className='py-6 py-md-8'> | ||
<div className='container'> | ||
<div className='row justify-content-center'> | ||
{tools.map((tool, toolIndex) => ( | ||
<div key={`tool${toolIndex}`} className='col-12 col-lg-4 d-flex'> | ||
<Card | ||
data={{ | ||
...tool | ||
}} | ||
vertical | ||
cover={false} | ||
border | ||
/> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default Tools; |
Oops, something went wrong.