Fix broken url to the "?" image

This commit is contained in:
Lee 2022-12-13 12:06:16 +00:00
parent 2fd0f2546a
commit 5c8c838b83
No known key found for this signature in database
GPG Key ID: 6EA25896ECCB3121
4 changed files with 8 additions and 14 deletions

@ -13,7 +13,7 @@ const Avatar = (props) => {
alt={"Avatar image"}
loading="lazy"
placeholder="blur"
blurDataURL="https://cdn.fascinated.cc/IkQFyodbZv.jpg?raw=true"
blurDataURL="https://cdn.fascinated.cc/yb4fgdc1.jpg"
/>
</>
);

@ -9,8 +9,7 @@ import {
const Avatar = (props) => {
const { isDark } = useTheme();
const avatarUrl =
props.avatarUrl || "https://cdn.fascinated.cc/IkQFyodbZv.jpg?raw=true";
const avatarUrl = props.avatarUrl || "https://cdn.fascinated.cc/yb4fgdc1.jpg";
const handleChange = () => {
const nextTheme = isDark ? "light" : "dark";

@ -92,7 +92,7 @@ export default function SongInfo() {
src={mapArt}
loading="lazy"
placeholder="blur"
blurDataURL="https://cdn.fascinated.cc/IkQFyodbZv.jpg?raw=true"
blurDataURL="https://cdn.fascinated.cc/yb4fgdc1.jpg"
/>
<div className={styles.songInfo}>
<p className={styles.songInfoSongName}>

@ -19,7 +19,6 @@ import "react-toastify/dist/ReactToastify.css";
import { NextSeo } from "next-seo";
import NavBar from "../components/Navbar";
import styles from "../styles/main.module.css";
import Utils from "../utils/utils";
export default class Home extends Component {
constructor(props) {
@ -307,15 +306,11 @@ export default class Home extends Component {
marginTop: "10px",
}}
>
<Link
onPress={(event) => {
Utils.openInNewTab(
"https://github.com/RealFascinated/beatsaber-overlay"
);
}}
>
If you like this project and want to support it. Come
check out the project on GitHub!
<Link href="https://github.com/RealFascinated/beatsaber-overlay">
<a>
If you like this project and want to support it. Come
check out the project on GitHub!
</a>
</Link>
</Text>
</Card.Body>