Skip to content

Commit

Permalink
- text fixes
Browse files Browse the repository at this point in the history
- added links to call buttons
- other fixes
  • Loading branch information
IxiAngel committed Nov 6, 2024
1 parent a52b800 commit 21bf3b2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"OurMission": {
"title": "Our <blue>Mission</blue>",
"subtitle": "At IXI Labs, we’re solving critical problems by redefining how authorisation and security are managed in the digital world. We specialise in <blue>creating solutions</blue> where <blue>cryptography</blue> and <blue>user sovereignty</blue> are at the core.",
"subtitle": "At IXI Labs, we’re solving critical problems by redefining how authorisation and secure communications are managed in the digital world. We specialise in <blue>creating solutions</blue> where <blue>cryptography</blue> and <blue>user sovereignty</blue> are at the core.",
"info1": {
"title": "100M+",
"subtitle": "Messages Encrypted and Delivered",
Expand All @@ -41,8 +41,8 @@
"subtitle": "In today’s digital landscape, the foundation of online identity, security and communication is fundamentally flawed.",
"accordion1": {
"title": "Security as a foundation, not an after-thought",
"subtitle": "Security aspects of an application or a service most of the times come as an after-though and are too often sacrificed for other functionality due to tight deadlines and small budgets. IXI Labs designs all products with necessary security principles from the start.",
"subtitle2": "We use the same cryptographic and other security methods as used in our decentralised platform, currently relied on by tens of thousands of users for secure communication and transferring value in the form of tokens."
"subtitle": "Security aspects of an application or a service most of the times come as an after-thought and are too often sacrificed for other functionality due to tight deadlines and small budgets. IXI Labs designs all products with necessary security principles from the start.",
"subtitle2": "<br/><br/>We use the same cryptographic and other security methods as used in our decentralised platform, currently relied on by tens of thousands of users for secure communication and transferring value in the form of tokens."
},
"accordion2": {
"title": "Increased Reliability",
Expand All @@ -68,7 +68,7 @@
},
"card3": {
"title": "Secure Communication Protocols",
"subtitle": "Our solutions shield your IP address from exposure, mitigating the risks of direct attacks, while our cryptographic methods ensure that your data remains secure, regardless of the underlying transport layer."
"subtitle": "Our solutions enable secure communications out-of-the-box, while our cryptographic methods ensure that your data remains secure, regardless of the underlying transport layer."
}
}
},
Expand Down Expand Up @@ -111,7 +111,7 @@
"title": "IXI Names",
"subtitle": "Naming service powered by the Ixian platform. Secured by blockchain and expanding on the functionality of the traditional naming services.",
"additional": "Coming Soon",
"url": "https://www.ixian.com"
"url": "https://www.ixinames.com"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const CuttingEdgeSection = () => {
<ContentWrapper className={classes.wrapper}>
<div className={classes.content}>
<Text type={'title-05'}>{t('title')}</Text>
<Button>{t('bookHere')}</Button>
<Button><Link href={t('bookUrl')}>{t('bookHere')}</Link></Button>
</div>
</ContentWrapper>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/app/Components/LetsBuildFloater/LetsBuildFloater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const LetsBuildFloater = () => {
<Text as={'h1'} type={'title-03'}>
{t('title')}
</Text>
<Button variant={'outlined'}>{t('bookCall')}</Button>
<Button variant={'outlined'}><Link href={t('bookUrl')}>{t('bookCall')}</Link></Button>
</section>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/Components/Navbar/Navbar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
margin: 0 auto;

.content {
padding: 44px 24px 12px 24px;
padding: 32px 24px 12px 24px;
display: flex;
justify-content: space-between;
align-items: center;
Expand Down
4 changes: 2 additions & 2 deletions src/app/Components/SolvingAccordion/SolvingAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const SolvingAccordion = () => {
<Text type={'body-02'}>{t('accordion1.subtitle2')}</Text>
</AccordionItem>
<AccordionItem header={t('accordion2.title')}>
<Text type={'body-02'}>{t('accordion1.subtitle')}</Text>
<Text type={'body-02'}>{t('accordion2.subtitle')}</Text>
</AccordionItem>
<AccordionItem header={t('accordion3.title')}>
<Text type={'body-02'}>{t('accordion1.subtitle')}</Text>
<Text type={'body-02'}>{t('accordion3.subtitle')}</Text>
</AccordionItem>
</Accordion>
);
Expand Down

0 comments on commit 21bf3b2

Please sign in to comment.