This commit is contained in:
Kieran 2023-07-21 20:48:18 +01:00
parent 5ffa8c4cf2
commit 9f1846351f
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
15 changed files with 9 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -12,7 +12,7 @@
<link rel="preconnect" href="https://imgproxy.snort.social" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="apple-touch-icon" href="/nostrich_512.png" />
<link rel="apple-touch-icon" href="/logo_512.png" />
<link rel="manifest" href="/manifest.json" />
<title>Snort - Nostr</title>
</head>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -4,12 +4,12 @@
"description": "Fast nostr web ui",
"icons": [
{
"src": "nostrich_256.png",
"src": "logo_256.png",
"type": "image/png",
"sizes": "256x256"
},
{
"src": "nostrich_512.png",
"src": "logo_512.png",
"type": "image/png",
"sizes": "512x512"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 528 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 771 KiB

View File

@ -1,5 +1,5 @@
import "./Avatar.css";
import Nostrich from "nostrich.webp";
import Nostrich from "public/logo.png";
import { CSSProperties, useEffect, useState } from "react";
import type { UserMetadata } from "@snort/system";

View File

@ -1,5 +1,5 @@
import "./RelaysMetadata.css";
import Nostrich from "nostrich.webp";
import Nostrich from "public/logo.png";
import { useState } from "react";
import { FullRelaySettings } from "@snort/system";

View File

@ -1,4 +1,4 @@
import Nostrich from "nostrich.webp";
import Nostrich from "public/logo.png";
import { TaggedRawEvent, EventKind, MetadataCache } from "@snort/system";
import { getDisplayName } from "Element/ProfileImage";

View File

@ -1,5 +1,5 @@
import "./Profile.css";
import Nostrich from "nostrich.webp";
import Nostrich from "public/logo.png";
import { useEffect, useState } from "react";
import { FormattedMessage } from "react-intl";
import { useNavigate } from "react-router-dom";

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -38,8 +38,8 @@ const config = {
patterns: [
{ from: "public/manifest.json" },
{ from: "public/robots.txt" },
{ from: "public/nostrich_512.png" },
{ from: "public/nostrich_256.png" },
{ from: "public/logo_512.png" },
{ from: "public/logo_256.png" },
{ from: "_headers" },
],
}),