Skip to content

Commit 76900a6

Browse files
committed
fix a few more SEO-related minor issues
1 parent 97dc430 commit 76900a6

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/components/animated-outlet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from "motion/react";
1414
import { forwardRef, useContext, useRef } from "react";
1515

16-
const exit = { opacity: 0.0, scale: 0.99 };
16+
const exit = { opacity: 0.01, scale: 0.99 };
1717

1818
const transitionProps = {
1919
initial: exit,

src/components/header.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export function Header({ hero = false, isVisible = true }: Props) {
4949
href="https://github.com/ethui/ethui"
5050
target="_blank"
5151
rel="noreferrer"
52+
aria-label="GitHub"
5253
className="font-medium text-sm underline-offset-4 hover:underline"
5354
>
5455
<GithubIcon className="inline h-6 w-6" />

src/routes/docs/-manifest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as features05LazyLoadedKeys from "#/docs/02-features/05-lazy-loaded-key
99
import * as features06Sim from "#/docs/02-features/06-simulations.mdx";
1010

1111
import * as wallets01 from "#/docs/03-wallets/01-index.mdx";
12-
import * as wallest02HD from "#/docs/03-wallets/02-hdwallet.mdx";
12+
import * as wallets02HD from "#/docs/03-wallets/02-hdwallet.mdx";
1313
import * as wallets03Keystore from "#/docs/03-wallets/03-keystore.mdx";
1414
import * as wallets04PKey from "#/docs/03-wallets/04-pkey.mdx";
1515
import * as wallets05Plaintext from "#/docs/03-wallets/05-plaintext.mdx";
@@ -40,7 +40,7 @@ export const docsManifest = {
4040
slug: "wallets",
4141
children: [
4242
wallets01,
43-
wallest02HD,
43+
wallets02HD,
4444
wallets03Keystore,
4545
wallets04PKey,
4646
wallets05Plaintext,

src/utils/seo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export const seo = ({
88
image,
99
type = "website",
1010
url,
11-
twitterCreator = "@naps62",
12-
twitterSite = "@naps62",
11+
twitterCreator = "@ethuidev",
12+
twitterSite = "@ethuidev",
1313
article,
1414
}: {
1515
title: string;

0 commit comments

Comments
 (0)