feat: update favicon to match dashboard Activity icon
Created SVG icon that matches the Activity/pulse icon used in the app: - Blue gradient background matching the app theme - White pulse/activity line icon - Updated layout.tsx to use the new SVG icon
This commit is contained in:
parent
49adba17f1
commit
6df319166d
2 changed files with 13 additions and 3 deletions
|
|
@ -13,9 +13,9 @@ export const metadata: Metadata = {
|
||||||
title: "Pulse - PSA Management System",
|
title: "Pulse - PSA Management System",
|
||||||
description: "Modern dashboard for Autotask PSA integration with RMM and NMS mapping",
|
description: "Modern dashboard for Autotask PSA integration with RMM and NMS mapping",
|
||||||
icons: {
|
icons: {
|
||||||
icon: "/favicon.ico",
|
icon: "/icon.svg",
|
||||||
shortcut: "/favicon.ico",
|
shortcut: "/icon.svg",
|
||||||
apple: "/favicon.ico",
|
apple: "/icon.svg",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
10
public/icon.svg
Normal file
10
public/icon.svg
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||||
|
<stop offset="0%" style="stop-color:#2563eb"/>
|
||||||
|
<stop offset="100%" style="stop-color:#1d4ed8"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<rect width="32" height="32" rx="6" fill="url(#gradient)"/>
|
||||||
|
<path d="M8 16h3l2-6 4 12 3-6h2" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 492 B |
Loading…
Add table
Add a link
Reference in a new issue