Revert "Logo's"

This reverts commit 9f1846351f.
This commit is contained in:
Kieran 2023-07-27 14:12:34 +01:00
parent 076d5d8cd5
commit cdf9a00fcb
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
14 changed files with 9 additions and 10 deletions

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="/logo_512.png" />
<link rel="apple-touch-icon" href="/nostrich_512.png" />
<link rel="manifest" href="/manifest.json" />
<title>Snort - Nostr</title>
</head>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 771 KiB

View File

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

View File

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

View File

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

View File

@ -104,7 +104,7 @@ export default function Layout() {
{!shouldHideHeader && (
<header className="main-content">
<div className="logo" onClick={() => navigate("/")}>
<Icon name="snort-by" size={150} height={20} />
<h1>Snort</h1>
{currentSubscription && (
<small className="flex">
<Icon name="diamond" size={10} className="mr5" />

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

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