refactor(ui): removed n-p components in about page (#662)

This commit is contained in:
Corentin THOMASSET 2023-10-14 18:37:26 +02:00 committed by GitHub
parent 025f556023
commit a757a5155a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,17 +7,17 @@ const { tracker } = useTracker();
</script> </script>
<template> <template>
<div class="about-page"> <div mx-auto mt-50px max-w-600px>
<n-h1>About</n-h1> <h1>About IT-Tools</h1>
<n-p> <p text-justify>
This wonderful website, made with by This wonderful website, made with by
<c-link href="https://github.com/CorentinTh" target="_blank" rel="noopener"> <c-link href="https://github.com/CorentinTh" target="_blank" rel="noopener">
Corentin Thomasset Corentin Thomasset
</c-link>, </c-link>,
aggregates useful tools for developer and people working in IT. If you find it useful, please feel free to share aggregates useful tools for developer and people working in IT. If you find it useful, please feel free to share
it to people you think may find it useful too and don't forget to bookmark it in your shortcut bar! it to people you think may find it useful too and don't forget to bookmark it in your shortcut bar!
</n-p> </p>
<n-p> <p text-justify>
IT Tools is open-source (under the MIT license) and free, and will always be, but it costs me money to host and IT Tools is open-source (under the MIT license) and free, and will always be, but it costs me money to host and
renew the domain name. If you want to support my work, and encourage me to add more tools, please consider renew the domain name. If you want to support my work, and encourage me to add more tools, please consider
supporting by supporting by
@ -29,20 +29,20 @@ const { tracker } = useTracker();
> >
sponsoring me sponsoring me
</c-link>. </c-link>.
</n-p> </p>
<n-h2>Technologies</n-h2> <h2>Technologies</h2>
<n-p> <p text-justify>
IT Tools is made in Vue.js (Vue 3) with the the Naive UI component library and is hosted and continuously deployed IT Tools is made in Vue.js (Vue 3) with the the Naive UI component library and is hosted and continuously deployed
by Vercel. Third-party open-source libraries are used in some tools, you may find the complete list in the by Vercel. Third-party open-source libraries are used in some tools, you may find the complete list in the
<c-link href="https://github.com/CorentinTh/it-tools/blob/main/package.json" rel="noopener" target="_blank"> <c-link href="https://github.com/CorentinTh/it-tools/blob/main/package.json" rel="noopener" target="_blank">
package.json package.json
</c-link> </c-link>
file of the repository. file of the repository.
</n-p> </p>
<n-h2>Found a bug? A tool is missing?</n-h2> <h2>Found a bug? A tool is missing?</h2>
<n-p> <p text-justify>
If you need a tool that is currently not present here, and you think can be useful, you are welcome to submit a If you need a tool that is currently not present here, and you think can be useful, you are welcome to submit a
feature request in the feature request in the
<c-link <c-link
@ -53,8 +53,8 @@ const { tracker } = useTracker();
issues section issues section
</c-link> </c-link>
in the GitHub repository. in the GitHub repository.
</n-p> </p>
<n-p> <p text-justify>
And if you found a bug, or something doesn't work as expected, please file a bug report in the And if you found a bug, or something doesn't work as expected, please file a bug report in the
<c-link <c-link
href="https://github.com/CorentinTh/it-tools/issues/new/choose" href="https://github.com/CorentinTh/it-tools/issues/new/choose"
@ -64,22 +64,6 @@ const { tracker } = useTracker();
issues section issues section
</c-link> </c-link>
in the GitHub repository. in the GitHub repository.
</n-p> </p>
</div> </div>
</template> </template>
<style scoped lang="less">
.about-page {
max-width: 600px;
margin: 50px auto;
box-sizing: border-box;
.n-h2 {
margin-bottom: 0px;
}
.n-p {
text-align: justify;
}
}
</style>