Skip to content

Commit

Permalink
fix: header logo in dark mode and jumbotron
Browse files Browse the repository at this point in the history
  • Loading branch information
voenkomatiwe committed Jan 8, 2024
1 parent 61b078f commit be5ca63
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion explorer/src/assets/locales/en/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"home": {
"title": "Your Reputation Under Your Control",
"description": "Explore the ecosystem to find out how you can unlock your data from across the web and share it with the world on your own terms",
"exploreEcosystem": "or explore the ecosystem",
"exploreEcosystem": "or <bold>explore the ecosystem . . .</bold>",
"info": {
"issueYourAttestation": "Want to issue your own attestation?",
"aboutVerax": "Want to know more about Verax?"
Expand Down
20 changes: 10 additions & 10 deletions explorer/src/assets/logo/verax-logo-dark-mode.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion explorer/src/pages/Home/components/Jumbotron/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { t } from "i18next";
import { ArrowUpRight } from "lucide-react";
import { Trans } from "react-i18next";

import { Button } from "@/components/Buttons";
import { EButtonType } from "@/components/Buttons/enum";
Expand All @@ -24,7 +25,7 @@ export const Jumbotron: React.FC = () => {
iconRight={<ArrowUpRight />}
/>
<p className="text-text-tertiary text-base not-italic font-normal leading-[140%]">
{t("home.exploreEcosystem")}
<Trans i18nKey="home.exploreEcosystem" components={{ bold: <strong /> }} />
</p>
</div>
</div>
Expand Down

0 comments on commit be5ca63

Please sign in to comment.