File tree Expand file tree Collapse file tree 10 files changed +6921
-12723
lines changed
Expand file tree Collapse file tree 10 files changed +6921
-12723
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const metadata: Metadata = {
99 description : "Much! A lot of! Ideas!" ,
1010} ;
1111
12- export default function Home ( ) {
12+ export default function Article ( ) {
1313 return (
1414 < >
1515 < Explains />
Original file line number Diff line number Diff line change 1+ "use client" ;
2+ import { useTranslations } from "next-intl" ;
3+
4+ export default function Explains ( ) {
5+ const t = useTranslations ( "pages.game" ) ;
6+ return (
7+ < >
8+ < section className = "title" >
9+ < h1 > { t ( "title" ) } </ h1 >
10+ </ section >
11+ < section className = "description" >
12+ < p > { t ( "description.msg1" ) } </ p >
13+ < p > { t ( "description.msg2" ) } </ p >
14+ </ section >
15+ </ >
16+ ) ;
17+ }
Original file line number Diff line number Diff line change 1- export default function GamesPage ( ) {
1+ import "./page.css" ;
2+ import Explains from "./components/explains" ;
3+ import { Metadata } from "next" ;
4+
5+ export const metadata : Metadata = {
6+ title : "The Infinity's Games" ,
7+ description : "Enjoy! with yourself!" ,
8+ } ;
9+
10+ export default function GamePages ( ) {
211 return (
3- < div >
4- < h1 > Games</ h1 >
5- < p > Coming soon!</ p >
6- </ div >
12+ < >
13+ < Explains />
14+ </ >
715 ) ;
816}
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ export default function Header() {
5555 < div
5656 className = "flex items-center justify-start"
5757 >
58- { /* <Image src={TheInfiniteImage} alt="" width={30} height={30} /> */ }
5958 < h1
6059 className = { `${ chakraPetch . className } italic font-semibold text-4xl` } // text-4xlに変更
6160 >
@@ -127,7 +126,6 @@ export default function Header() {
127126 className = { `${ chakraPetch . className } block py-2 md:py-0 hover:text-[var(--foreground)] italic` }
128127 aria-label = { menu . label }
129128 >
130- { /* {menu.img && menu.img} */ }
131129 { menu . name }
132130 </ Link >
133131 </ li >
Original file line number Diff line number Diff line change 3636 }
3737 }
3838 },
39+ "game" : {
40+ "title" : " Games" ,
41+ "description" : {
42+ "msg1" : " ここでは、私が作ったゲームを遊ぶことができます!" ,
43+ "msg2" : " 自由に遊んでください!"
44+ }
45+ },
3946 "music" : {
4047 "description" : {
4148 "msg1" : " ここでは、私が制作した様々な音楽を聴くことができます!" ,
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments