Skip to content

Commit

Permalink
feat: rhea deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
naturexie committed Feb 26, 2025
1 parent c3a171e commit c161a9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ module.exports = {
"@typescript-eslint/no-inferrable-types": ["off"],
"no-underscore-dangle": "off",
"react/no-unused-prop-types": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
},
settings: {
react: {
Expand Down
5 changes: 2 additions & 3 deletions components/Header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, { useState, useEffect } from "react";
import { useTheme, Box, Snackbar, Typography } from "@mui/material";
import { useRouter } from "next/router";
import Image from "next/image";
import Link from "next/link";
import LogoIcon from "../../public/logo.svg";
import BrrrIcon from "../../public/brrr.svg";
Expand Down Expand Up @@ -128,8 +127,8 @@ const Header = () => {
>
{/* <span className=" transform"><LogoIcon /></span> */}
{/* <img src="/public/logo.svg" width={30} height={30} /> */}
<Image
src="/Rhea-logo.png"
<img
src="/rheaLogo.png"
width={80}
height={30}
alt=""
Expand Down
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function Upgrade({ Component, pageProps }) {
<div>
{upgrading ? (
<div className="flex flex-col items-center justify-center h-screen">
<img src="/loading-brrr.gif" alt="" width="75px" />
<img src="/favicon.png" alt="" width="75px" />
<span className="flex items-center text-sm text-gray-300 mt-2">
Refreshing assets data...
</span>
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion screens/Market/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Market = () => {
/>
{loading ? (
<div className="flex flex-col items-center mt-24">
<img src="/loading-brrr.gif" alt="" width="75px" />
<img src="/favicon.png" alt="" width="75px" />
<span className="flex items-center text-sm text-gray-300 mt-2">Loading data...</span>
</div>
) : null}
Expand Down

0 comments on commit c161a9b

Please sign in to comment.