Skip to content

Commit

Permalink
update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
neila committed Mar 1, 2024
1 parent fa981b3 commit c77f2fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .lintstagedrc.js
Original file line number Diff line number Diff line change
@@ -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(" ")} `;

Expand Down
File renamed without changes
Binary file modified public/logo/ETHTokyoLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<PageProps> = ({ params, searchParams }) => {
const TriangleJpWaveBackground = ({ children }: ComponentProps) => {
Expand Down Expand Up @@ -50,7 +49,8 @@ const Page: NextPage<PageProps> = ({ params, searchParams }) => {
css={css`
height: auto;
max-width: 256px;
padding-top: 1rem
padding-left: 11px;
padding-top: 1rem;
`}
/>
);
Expand Down

0 comments on commit c77f2fa

Please sign in to comment.