Logo's
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@ -12,7 +12,7 @@
|
|||||||
<link rel="preconnect" href="https://imgproxy.snort.social" />
|
<link rel="preconnect" href="https://imgproxy.snort.social" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<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 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" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
<title>Snort - Nostr</title>
|
<title>Snort - Nostr</title>
|
||||||
</head>
|
</head>
|
||||||
|
BIN
packages/app/public/logo.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
packages/app/public/logo_256.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
packages/app/public/logo_512.png
Normal file
After Width: | Height: | Size: 15 KiB |
@ -4,12 +4,12 @@
|
|||||||
"description": "Fast nostr web ui",
|
"description": "Fast nostr web ui",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "nostrich_256.png",
|
"src": "logo_256.png",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"sizes": "256x256"
|
"sizes": "256x256"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "nostrich_512.png",
|
"src": "logo_512.png",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"sizes": "512x512"
|
"sizes": "512x512"
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 146 KiB |
Before Width: | Height: | Size: 528 KiB |
Before Width: | Height: | Size: 771 KiB |
@ -1,5 +1,5 @@
|
|||||||
import "./Avatar.css";
|
import "./Avatar.css";
|
||||||
import Nostrich from "nostrich.webp";
|
import Nostrich from "public/logo.png";
|
||||||
|
|
||||||
import { CSSProperties, useEffect, useState } from "react";
|
import { CSSProperties, useEffect, useState } from "react";
|
||||||
import type { UserMetadata } from "@snort/system";
|
import type { UserMetadata } from "@snort/system";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import "./RelaysMetadata.css";
|
import "./RelaysMetadata.css";
|
||||||
import Nostrich from "nostrich.webp";
|
import Nostrich from "public/logo.png";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
import { FullRelaySettings } from "@snort/system";
|
import { FullRelaySettings } from "@snort/system";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import Nostrich from "nostrich.webp";
|
import Nostrich from "public/logo.png";
|
||||||
|
|
||||||
import { TaggedRawEvent, EventKind, MetadataCache } from "@snort/system";
|
import { TaggedRawEvent, EventKind, MetadataCache } from "@snort/system";
|
||||||
import { getDisplayName } from "Element/ProfileImage";
|
import { getDisplayName } from "Element/ProfileImage";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import "./Profile.css";
|
import "./Profile.css";
|
||||||
import Nostrich from "nostrich.webp";
|
import Nostrich from "public/logo.png";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { FormattedMessage } from "react-intl";
|
import { FormattedMessage } from "react-intl";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
|
Before Width: | Height: | Size: 11 KiB |
@ -38,8 +38,8 @@ const config = {
|
|||||||
patterns: [
|
patterns: [
|
||||||
{ from: "public/manifest.json" },
|
{ from: "public/manifest.json" },
|
||||||
{ from: "public/robots.txt" },
|
{ from: "public/robots.txt" },
|
||||||
{ from: "public/nostrich_512.png" },
|
{ from: "public/logo_512.png" },
|
||||||
{ from: "public/nostrich_256.png" },
|
{ from: "public/logo_256.png" },
|
||||||
{ from: "_headers" },
|
{ from: "_headers" },
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|