Skip to content

Commit 686dae6

Browse files
Merge pull request #31 from solid/feat/my-storages
feat: added new solid file manager logo
2 parents dbeb3ba + 6ba67ff commit 686dae6

5 files changed

Lines changed: 124 additions & 20 deletions

File tree

app/components/Header.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,16 @@ export default function Header({ onMenuClick, sidebarOpen = false }: HeaderProps
3636
)}
3737

3838
{/* Logo/App Name */}
39-
<div className="flex items-center gap-2 sm:gap-3">
39+
<div className="max-w-[250px] max-h-[200px] w-full h-full flex items-center justify-center flex-shrink-0">
4040
<Image
41-
src="/solid.svg"
41+
src="/file-manager-logo.svg"
4242
alt="Solid Logo"
4343
width={24}
4444
height={24}
45-
className="h-6 w-6 flex-shrink-0 sm:h-7 sm:w-7"
45+
className="w-full h-full object-cover "
4646
priority
4747
aria-hidden="true"
4848
/>
49-
<h1 className="text-sm font-medium text-black sm:text-lg">Solid File Manager</h1>
5049
</div>
5150

5251
{/* Action Buttons */}

app/components/LoginPage.tsx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ export default function LoginPage() {
4040
aria-label="Branding section"
4141
>
4242
<div className="max-w-md">
43-
<header className="mb-8">
44-
<div className="mb-8">
43+
<header className="flex flex-col items-center justify-center gap-2">
44+
<div className="flex items-center justify-center w-[200px] h-[200px]">
4545
<Image
46-
src="/solid.svg"
47-
alt="Solid Logo"
48-
width={80}
49-
height={80}
50-
className="mb-6"
46+
src="/file-manager-logo.svg"
47+
alt="Solid File Manager Logo"
48+
width={60}
49+
height={60}
50+
className="w-full h-full object-cover"
5151
priority
5252
/>
5353
</div>
@@ -66,13 +66,14 @@ export default function LoginPage() {
6666
>
6767
<div className="w-full max-w-md">
6868
{/* Mobile logo */}
69-
<header className="mb-8 lg:hidden">
70-
<div className="mb-6 flex justify-center">
69+
<header className="mb-8 lg:hidden flex flex-col items-center justify-center">
70+
<div className="mb-2 flex items-center justify-center w-[200px] h-[200px]">
7171
<Image
72-
src="/solid.svg"
73-
alt="Solid Logo"
72+
src="/file-manager-logo.svg"
73+
alt="Solid File Manager Logo"
7474
width={60}
7575
height={60}
76+
className="w-full h-full object-cover"
7677
priority
7778
/>
7879
</div>

app/layout.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ const geistMono = Geist_Mono({
1616
export const metadata: Metadata = {
1717
title: "Solid File Manager",
1818
description: "A Google Drive-like file manager for Solid Pods",
19-
icons: {
20-
icon: "/solid.svg",
21-
shortcut: "/solid.svg",
22-
apple: "/solid.svg",
23-
},
19+
icons: {
20+
icon: "/favicon.svg",
21+
shortcut: "/favicon.svg",
22+
apple: "/favicon.svg",
23+
},
2424
};
2525

2626
export default function RootLayout({

public/favicon.svg

Lines changed: 41 additions & 0 deletions
Loading

public/file-manager-logo.svg

Lines changed: 63 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)