Skip to content

Commit 4553ca2

Browse files
committed
descriptions tweaking
1 parent 5a339aa commit 4553ca2

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

app/(pages)/page.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,31 @@ const Home: NextPage = () => {
77
<>
88
<div className="pb-10 pt-10 md:pt-20 lg:pb-24 lg:pt-24">
99
<h1 className="m-auto mb-8 max-w-2xl text-center text-2xl font-black md:text-4xl lg:max-w-4xl lg:text-6xl">
10-
Buildo is your companion through the MultiversX!
10+
Your MultiversX companion. Saving you time!
1111
</h1>
1212
<h2 className="m-auto max-w-2xl text-center text-sm font-light sm:mb-8 md:text-xl lg:max-w-4xl lg:text-2xl">
1313
Buildo.dev is a{' '}
1414
<a
1515
href="https://multiversx.com"
1616
target="_blank"
1717
className="underline"
18+
rel="nofollow"
1819
>
1920
MultiversX
2021
</a>{' '}
21-
app that helps with blockchain interactions, like issuing tokens and
22-
querying smart contracts.
22+
app that simplifies blockchain interactions, like issuing tokens and
23+
preparing and broadcasting transactions.
2324
</h2>
2425
<h3 className="m-auto hidden max-w-2xl text-center text-xs font-extralight sm:block md:text-sm lg:max-w-4xl">
25-
If you like to work with CLI tools, check the{' '}
26+
If you prefer working with CLI tools, check out the{' '}
2627
<a
2728
href="https://github.com/xdevguild/buildo-begins"
2829
target="_blank"
2930
className="underline"
3031
>
3132
Buildo Begins
3233
</a>{' '}
33-
CLI! Check the{' '}
34+
CLI! Also check out the{' '}
3435
<a
3536
href="https://chat.openai.com/g/g-GN0Zq0iZP-buildo-expert"
3637
target="_blank"
@@ -39,15 +40,15 @@ const Home: NextPage = () => {
3940
Buildo Expert GPT Assistant
4041
</a>
4142
<br />
42-
Remember that there are different{' '}
43+
Remember that different{' '}
4344
<a
4445
className="underline"
4546
href="https://github.com/multiversx/mx-api-service/blob/main/src/utils/cache.info.ts"
4647
target="_blank"
4748
>
48-
cache strategies for API
49+
cache strategies for APIs
4950
</a>
50-
, so not all changes will be visible immediately.
51+
, mean not all changes will be visible immediately.
5152
</h3>
5253
<OperationsAuthCheck />
5354
</div>

components/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const Footer = () => {
66
<div className="flex h-[114px] items-center">
77
<div className="container mx-auto flex flex-col items-center justify-center text-center text-sm">
88
<div className="font-bold">
9-
Buildo is your companion through the MultiversX (v
9+
Your MultiversX Companion: Saving You Time (v
1010
{`${packageJson.version}`})
1111
</div>
1212
<div className="text-xs">

lib/get-metadata.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
const dappHostname = process.env.NEXT_PUBLIC_DAPP_HOST;
2-
const globalTitle =
3-
'MultiversX companion that helps with blockchain interactions';
2+
const globalTitle = 'Your MultiversX Companion - Saving You Time';
43
const globalDescription =
5-
'Buildo.dev is a MultiversX app that helps with blockchain interactions, like issuing tokens and querying smart contracts.';
4+
'Buildo.dev is a MultiversX app that simplifies blockchain interactions, like issuing tokens and preparing and broadcasting transactions.';
65
const globalImage = `${dappHostname}/og-image.png`;
76

87
export const getMetadata = ({

0 commit comments

Comments
 (0)