Expanded landing page description

This commit is contained in:
2023-11-24 11:39:27 +01:00
parent 099cdeae5e
commit dc44d5120b

View File

@@ -5,14 +5,38 @@
<template>
<div class="dark:text-slate-100">
<h1 class="text-3xl mb-4">Welcome to Release11 Tools</h1>
<h2 class="text-xl">Our toolset is split to three main categories:</h2>
<ol class="list-decimal ml-5">
<h2 class="text-xl">Our tool set is split to three main categories:</h2>
<ul class="list-decimal ml-5">
<li><strong>XML</strong> - containing various tools that allow to validate and transform any XML</li>
<li><strong>Formatter</strong> - containing tools for formatting text files in various formats</li>
<li><strong>REST</strong> - consist of Mock that allows to create mocked REST endpoint</li>
</ol>
<li><strong>Encoder</strong> - consist of encoders for Base64 and URL</li>
</ul>
<br/>
<h2 class="text-xl mt-2">XML - Tools:</h2>
<ul class="list-decimal ml-5">
<li><strong>XPath</strong> - This is tool that allows to parse XPath on selected XML</li>
<li><strong>XQuery</strong> - Allows to execute XQuery on provided XML file.</li>
<li><strong>XSD</strong> - Allows to validate XML against provided XSD schema.</li>
<li><strong>XSLT</strong> - Allows to transformate XML using XSLT transformate.</li>
</ul>
<h2 class="text-xl mt-2">Formatter - Tools:</h2>
<p>These are tools that allow to format or minimize files in bespoken formats.</p>
<h2 class="text-xl mt-2">REST - Tools:</h2>
<p>This is tools that allow to created mocked REST Service that can be used to test REST clients.</p>
<h2 class="text-xl mt-2">Encoder - Tools:</h2>
<ul class="list-decimal ml-5">
<li><strong>Base64</strong> - This is tool allowing to encode text to base64 and decode base64 to text or image.</li>
<li><strong>URL</strong> - This tool allow to encode string in the way that is used by browser when you put it in address bar.</li>
</ul>
</div>
</template>
<style scoped></style>