diff --git a/cspell.json b/cspell.json index 28191e9..79138ac 100644 --- a/cspell.json +++ b/cspell.json @@ -2,5 +2,5 @@ "ignorePaths": ["node_modules/**", "*.svg"], "version": "0.2", "language": "en", - "words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","Garelly","natsu","matsuri"] + "words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","natsu","matsuri"] } diff --git a/src/components/Garelly/index.module.css b/src/components/Gallery/index.module.css similarity index 100% rename from src/components/Garelly/index.module.css rename to src/components/Gallery/index.module.css diff --git a/src/components/Garelly/index.tsx b/src/components/Gallery/index.tsx similarity index 95% rename from src/components/Garelly/index.tsx rename to src/components/Gallery/index.tsx index bd2871d..af3ee94 100644 --- a/src/components/Garelly/index.tsx +++ b/src/components/Gallery/index.tsx @@ -1,6 +1,6 @@ import styles from "./index.module.css"; -function Garelly() { +function Gallery() { return (
{/* biome-ignore lint/a11y/useMediaCaption: 夏祭りの音を再生します。 */} @@ -29,4 +29,4 @@ function Garelly() {
); } -export default Garelly; +export default Gallery; diff --git a/src/pages/yatai/index.tsx b/src/pages/yatai/index.tsx index 78bbb59..2d1598e 100644 --- a/src/pages/yatai/index.tsx +++ b/src/pages/yatai/index.tsx @@ -9,7 +9,6 @@ import type { Object3DEventMap, } from "three"; import { randFloat } from "three/src/math/MathUtils.js"; -import Garelly from "../../components/Garelly"; import { useSocketRefStore } from "../../store"; import { type ActionSchema, @@ -17,6 +16,7 @@ import { type Target, } from "../../type/shooting"; import styles from "./index.module.css"; +import Gallery from "../../components/Gallery"; const YataiStage = memo(() => { // 土台 @@ -217,7 +217,7 @@ function Yatai() {
- +
); }