[misc][s]: rename Portal.js to PortalJS

This commit is contained in:
anuveyatsu
2023-04-22 12:11:51 +06:00
parent 7684a89f55
commit cceb1b011e
15 changed files with 32 additions and 32 deletions

View File

@@ -77,7 +77,7 @@ export default function Community() {
<div className="flex flex-wrap justify-center mt-12">
<IconButton
Icon={GitHubIcon}
text="Star Portal.JS on GitHub"
text="Star PortalJS on GitHub"
className="sm:mr-4 mb-4 w-full sm:w-auto"
href={siteConfig.github}
/>
@@ -89,7 +89,7 @@ export default function Community() {
/>
<IconButton
Icon={EmailIcon}
text="Subscribe to the Portal.JS newsletter"
text="Subscribe to the PortalJS newsletter"
className="w-full sm:w-auto"
href="#hero"
/>

View File

@@ -41,10 +41,10 @@ export default function Features() {
return (
<Container>
<h2 className="text-3xl font-bold text-primary dark:text-primary-dark">
How Portal.JS works?
How PortalJS works?
</h2>
<p className="text-lg mt-8">
Portal.JS is built in JavaScript and React on top of the popular Next.js
PortalJS is built in JavaScript and React on top of the popular Next.js
framework, assuming a "decoupled" approach where the frontend is a
separate service from the backend and interacts with backend(s) via an
API. It can be used with any backend and has out of the box support for

View File

@@ -55,7 +55,7 @@ export default function Gallery() {
>
Gallery
</h2>
<p className="text-lg mt-8">Discover what's being powered by Portal.JS</p>
<p className="text-lg mt-8">Discover what's being powered by PortalJS</p>
<div className="not-prose my-12 grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
{items.map((item) => {
return <GalleryItem item={item} />;