Skip to content

Commit

Permalink
fix: ログインをサインインに統一
Browse files Browse the repository at this point in the history
  • Loading branch information
appare45 committed Apr 26, 2024
1 parent 2892a40 commit 72ab772
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common_components/auth/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const SigninPage: NextPage = () => {
width: "fit-content",
maxWidth: "90%",
})}>
<h1 className={css({ fontSize: "2xl", fontWeight: "bold", marginBottom: 8 })}>ログイン</h1>
<h1 className={css({ fontSize: "2xl", fontWeight: "bold", marginBottom: 8 })}>サインイン</h1>
<SigninForm />
<div className={css({ display: "flex", gap: 3.5 })}>
<Image src={Triangle} alt="" />
Expand Down
4 changes: 2 additions & 2 deletions src/common_components/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const Header: FC = () => {
: [
{
path: "/register",
name: "ログイン/新規登録",
name: "サインイン/新規登録",
} as MenuData,
];

Expand Down Expand Up @@ -291,7 +291,7 @@ export const Header: FC = () => {
borderX: "solid 1px token(colors.gray.200)",
display: { base: "none", lg: "block" },
})}>
ログイン/新規登録
サインイン/新規登録
</button>
</nav>
)}
Expand Down

0 comments on commit 72ab772

Please sign in to comment.