chore(fork): rebrand logo text from Docmost to Gitmost

Update the app logo name (sidebar header and login page), including
the image alt and aria-label, from "Docmost" to "Gitmost".
This commit is contained in:
vvzvlad
2026-06-16 23:00:32 +03:00
parent c8d715f640
commit 422912afb8
2 changed files with 5 additions and 5 deletions

View File

@@ -67,11 +67,11 @@ export function AppHeader() {
/>
</Tooltip>
<Link to="/home" className={classes.brand} aria-label="Docmost">
<Link to="/home" className={classes.brand} aria-label="Gitmost">
<Box hiddenFrom="sm" className={classes.brandIcon}>
<img
src="/icons/favicon-32x32.png"
alt="Docmost"
alt="Gitmost"
width={22}
height={22}
/>
@@ -82,7 +82,7 @@ export function AppHeader() {
style={{ userSelect: "none" }}
visibleFrom="sm"
>
Docmost
Gitmost
</Text>
</Link>

View File

@@ -12,12 +12,12 @@ export function AuthLayout({ children }: AuthLayoutProps) {
<Group justify="center" gap={8} className={classes.logo}>
<img
src="/icons/favicon-32x32.png"
alt="Docmost"
alt="Gitmost"
width={22}
height={22}
/>
<Text size="28px" fw={700} style={{ userSelect: "none" }}>
Docmost
Gitmost
</Text>
</Group>
<main>{children}</main>