fix: Fix icons
All checks were successful
release-tag / release-image (push) Successful in 2m16s

This commit is contained in:
Илья Куприец 2025-05-28 11:50:15 +03:00
parent 5440126898
commit 9e0cebcd50
5 changed files with 13 additions and 6 deletions

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" type="image/png" href="/favicon-ship.png" /> <link rel="icon" type="image/png" href="/favicon_ship.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta <meta

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

BIN
public/favicon_ship.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,13 +1,20 @@
import {AuthPage, ThemedTitleV2} from '@refinedev/mui' import { AuthPage, ThemedTitleV2 } from "@refinedev/mui";
import {ProjectIcon} from '../../components/ui/Icons' import { ProjectIcon } from "../../components/ui/Icons";
import { Ship } from "lucide-react";
export const Login = () => { export const Login = () => {
return ( return (
<AuthPage <AuthPage
type="login" type="login"
title={<ThemedTitleV2 collapsed={false} text="Белые Ночи" icon={<ProjectIcon style={{color: '#7f6b58'}} />} />} title={
<ThemedTitleV2
collapsed={false}
text="Белые Ночи"
icon={<Ship style={{ color: "#7f6b58" }} />}
/>
}
forgotPasswordLink={false} forgotPasswordLink={false}
registerLink={false} // only admin can add users registerLink={false} // only admin can add users
/> />
) );
} };