Skip to content

Commit

Permalink
fix: fix each event section title
Browse files Browse the repository at this point in the history
  • Loading branch information
re-taro committed Sep 17, 2024
1 parent b38a921 commit 8c23479
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
export function GameEventSection({ gameEvents }: Props): ReactNode {
return (
<section aria-label="game events section" className={styles.section} id="game">
<SectionTitle title="Game Events" />
<SectionTitle title="ゲームイベント" />
<ul className={styles.list}>
{gameEvents.map(gameEvent => (
<li key={gameEvent._meta.fileName}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
export function LiveEventSection({ liveEvents }: Props): ReactNode {
return (
<section aria-label="live events section" className={styles.section} id="live">
<SectionTitle title="Live Events" />
<SectionTitle title="ライブイベント" />
<ul className={styles.list}>
{liveEvents.map(liveEvent => (
<li key={liveEvent._meta.fileName}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
export function StageEventSection({ stageEvents }: Props): ReactNode {
return (
<section aria-label="stage events section" className={styles.section} id="stage">
<SectionTitle title="Stage Events" />
<SectionTitle title="ステージイベント" />
<ul className={styles.list}>
{stageEvents.map(stageEvent => (
<li key={stageEvent._meta.fileName}>
Expand Down

0 comments on commit 8c23479

Please sign in to comment.