diff --git a/app/components/BottomNav.tsx b/app/components/BottomNav.tsx index 5de7fda..07c768f 100644 --- a/app/components/BottomNav.tsx +++ b/app/components/BottomNav.tsx @@ -17,10 +17,10 @@ const LINKS = [ href: "/play", label: "遊ぶ", }, - // { - // href: "/guide", - // label: "遊び方", - // }, + { + href: "/guide", + label: "遊び方", + }, ]; export interface BottomNavProps { diff --git a/app/root.tsx b/app/root.tsx index ef71cd1..0222718 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -15,7 +15,6 @@ import { Analytics } from "./components/Analytics"; import { Background } from "./components/Background"; import { BottomNav } from "./components/BottomNav"; import { Button } from "./components/Button"; -import { Loading } from "./components/Loading"; import { Patterns } from "./components/Patterns"; import { ThemeProvider } from "./components/Theme"; import { useMyProfile } from "./features/profile/useMyProfile"; diff --git a/app/routes/_auth.guide.tsx b/app/routes/_auth.guide.tsx index 849f6ba..9244c6b 100644 --- a/app/routes/_auth.guide.tsx +++ b/app/routes/_auth.guide.tsx @@ -1,4 +1,5 @@ import type { MetaFunction } from "@remix-run/react"; +import { cva } from "class-variance-authority"; import type { ReactNode } from "react"; import { Heading } from "~/components/Heading"; @@ -12,7 +13,39 @@ export default function Page(): ReactNode { >
遊び方 +
+

+ RicoShotは4対4に分かれて戦うチーム対戦型のシューティングゲームです。 + 2分間の試合で、敵を倒してポイントを稼ぎましょう。 +

+ プレイ画面 +

+ 操作はコントローラーを使います。使うボタンは少ないので、ゲーム初心者でもすぐに慣れるはずです! +

+ 操作方法 +
); } + +const paragraph = cva("drop-shadow-base my-4"); +const image = cva( + "w-full border-white border-8 shadow-lg my-4 mx-1 aspect-video", + { + variants: { + dir: { + left: "rotate-2", + right: "-rotate-2", + }, + }, + }, +); diff --git a/public/assets/guide/controller.jpg b/public/assets/guide/controller.jpg new file mode 100644 index 0000000..aa78253 Binary files /dev/null and b/public/assets/guide/controller.jpg differ diff --git a/public/assets/guide/playing.jpg b/public/assets/guide/playing.jpg new file mode 100644 index 0000000..560a751 Binary files /dev/null and b/public/assets/guide/playing.jpg differ