add logo and favicons, use logo image in nav headers

This commit is contained in:
noah
2026-03-09 18:48:27 +01:00
parent 38f58327c4
commit e505c29c6a
7 changed files with 9 additions and 6 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

+1 -3
View File
@@ -48,9 +48,7 @@ export default function ConvertPage() {
{/* Header */} {/* Header */}
<header className="sticky top-0 z-50 flex items-center justify-between px-6 py-4 bg-bg-cream/80 backdrop-blur-xl border-b border-border-soft"> <header className="sticky top-0 z-50 flex items-center justify-between px-6 py-4 bg-bg-cream/80 backdrop-blur-xl border-b border-border-soft">
<Link href="/" className="flex items-center gap-2.5 no-underline"> <Link href="/" className="flex items-center gap-2.5 no-underline">
<div className="w-8 h-8 rounded-[10px] bg-pink flex items-center justify-center text-white font-serif font-black text-sm"> <img src="/logo.png" alt="Transmute" className="w-8 h-8 rounded-[10px]" />
T
</div>
<span className="font-serif font-extrabold text-xl tracking-tight text-text-dark">Transmute</span> <span className="font-serif font-extrabold text-xl tracking-tight text-text-dark">Transmute</span>
</Link> </Link>
<span className="font-mono text-[11px] text-text-light px-2.5 py-1 border border-border-soft rounded-full tracking-wide"> <span className="font-mono text-[11px] text-text-light px-2.5 py-1 border border-border-soft rounded-full tracking-wide">
+7
View File
@@ -36,6 +36,13 @@ export const metadata: Metadata = {
"online converter", "online converter",
"browser converter", "browser converter",
], ],
icons: {
icon: [
{ url: "/favicon-32.png", sizes: "32x32", type: "image/png" },
{ url: "/favicon-16.png", sizes: "16x16", type: "image/png" },
],
apple: "/apple-touch-icon.png",
},
}; };
export default function RootLayout({ export default function RootLayout({
+1 -3
View File
@@ -84,9 +84,7 @@ export default function LandingPage() {
{/* ──── NAV ──── */} {/* ──── NAV ──── */}
<header className="sticky top-0 z-50 flex items-center justify-between px-6 py-4 bg-bg-cream/80 backdrop-blur-xl border-b border-border-soft"> <header className="sticky top-0 z-50 flex items-center justify-between px-6 py-4 bg-bg-cream/80 backdrop-blur-xl border-b border-border-soft">
<Link href="/" className="flex items-center gap-2.5 no-underline"> <Link href="/" className="flex items-center gap-2.5 no-underline">
<div className="w-8 h-8 rounded-[10px] bg-pink flex items-center justify-center text-white font-serif font-black text-sm"> <img src="/logo.png" alt="Transmute" className="w-8 h-8 rounded-[10px]" />
T
</div>
<span className="font-serif font-extrabold text-xl tracking-tight text-text-dark">Transmute</span> <span className="font-serif font-extrabold text-xl tracking-tight text-text-dark">Transmute</span>
</Link> </Link>
<Link <Link