diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 6db2c4a..89b9ea3 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,12 +1,12 @@ const path = require("path"); const buildLintCommand = (filenames) => - `yarn run biome lint --no-errors-on-unmatched ${filenames + `npx yarn run biome lint --no-errors-on-unmatched ${filenames .map((f) => path.relative(process.cwd(), f)) .join(" ")}`; const buildFormatCommand = (filenames) => - `yarn run biome format --no-errors-on-unmatched ${filenames + `npx yarn run biome format --no-errors-on-unmatched ${filenames .map((f) => path.relative(process.cwd(), f)) .join(" ")} `; diff --git a/public/seikaiha.png b/public/images/seikaiha.png similarity index 100% rename from public/seikaiha.png rename to public/images/seikaiha.png diff --git a/public/logo/ETHTokyoLogo.png b/public/logo/ETHTokyoLogo.png index e1d4158..1005a4f 100644 Binary files a/public/logo/ETHTokyoLogo.png and b/public/logo/ETHTokyoLogo.png differ diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2588fb4..9a171fe 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -7,10 +7,9 @@ import type { ComponentProps } from "@/types"; import { css } from "@emotion/react"; import { NextPage } from "next"; import Image from "next/image"; -import Link from "next/link"; import topHero from "public/images/hero_top.jpg"; +import seikaiha from "public/images/seikaiha.png"; import ETHTokyoLogo from "public/logo/ETHTokyoLogo.png"; -import seikaiha from "public/seikaiha.png"; const Page: NextPage = ({ params, searchParams }) => { const TriangleJpWaveBackground = ({ children }: ComponentProps) => { @@ -50,7 +49,8 @@ const Page: NextPage = ({ params, searchParams }) => { css={css` height: auto; max-width: 256px; - padding-top: 1rem + padding-left: 11px; + padding-top: 1rem; `} /> );