Skip to content

Commit 91841cc

Browse files
committed
fix(ui): update dashboard text and replace icon with logo
- Change "My Dashboards" to "My Dashboard" in navigation and header - Replace lucide dashboard icon with custom dashboard logo image - Update logo image path to /my-dashboard-logo.png - Adjust spacing and layout for new logo and text changes
1 parent 25469bd commit 91841cc

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

demo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ <h1 class="text-4xl font-extrabold text-gray-800 mb-4">Start without registratio
10621062
<nav class="flex flex-col space-y-4 w-full">
10631063
<a href="#" class="flex items-center p-3 rounded-xl bg-pastel-blue/10 text-pastel-blue font-semibold transition-all duration-300 hover:bg-pastel-blue/20">
10641064
<i data-lucide="grid-3x3" class="w-6 h-6 mr-0 lg:mr-3"></i>
1065-
<span class="hidden lg:inline">My Dashboards</span>
1065+
<span class="hidden lg:inline">My Dashboard</span>
10661066
</a>
10671067

10681068
<a href="#" class="flex items-center p-3 rounded-xl text-gray-600 font-medium transition-all duration-300 hover:bg-gray-100 hover:text-gray-800" onclick="showView('seo-page')">
@@ -1086,7 +1086,7 @@ <h1 class="text-4xl font-extrabold text-gray-800 mb-4">Start without registratio
10861086
</div>
10871087

10881088
<div class="flex-1 p-6 lg:p-10 overflow-y-auto">
1089-
<h1 class="text-4xl font-extrabold text-gray-800 mb-2">My Dashboards</h1>
1089+
<h1 class="text-4xl font-extrabold text-gray-800 mb-2">My Dashboard</h1>
10901090
<p class="text-xl text-gray-500 mb-8">Manage all your projects in one place.</p>
10911091

10921092
<button class="flex items-center text-lg font-bold py-3 px-6 rounded-xl text-white bg-pastel-blue transition-all duration-300 transform hover:scale-[1.02] flat-btn-shadow mb-8

web/public/my-dashboard-logo.png

320 KB
Loading

web/src/app/app.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ export const routeMeta: RouteMeta = {
6060
class="w-16 lg:w-64 bg-white long-shadow p-4 flex flex-col items-center lg:items-start border-r border-gray-100 transition-all duration-300"
6161
>
6262
<a href="/" class="text-2xl font-bold text-pastel-blue mb-10 mt-2">
63-
<i-lucide
64-
name="layout-dashboard"
63+
<img
6564
class="w-8 h-8 lg:mr-2 inline-block align-middle"
66-
></i-lucide>
67-
<span class="mobile-hidden lg:inline align-middle">My Dashboards</span>
65+
src="/my-dashboard-logo.png"
66+
/>
67+
68+
<span class="mobile-hidden lg:inline align-middle">My Dashboard</span>
6869
</a>
6970

7071
<nav class="flex flex-col space-y-4 w-full">
@@ -164,4 +165,4 @@ export class AppComponent implements OnInit {
164165
new Error('This feature is not available yet')
165166
);
166167
}
167-
}
168+
}

0 commit comments

Comments
 (0)