Skip to content

Commit f4ee046

Browse files
committed
update
1 parent 44bc94e commit f4ee046

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

public/link.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
class="relative w-24 h-24 rounded-full border-2 border-slate-800 object-cover bg-slate-200">
148148
</div>
149149

150-
<h1 class="text-3xl font-bold text-white tracking-tight mb-2">Dev Developer</h1>
150+
<h1 class="text-3xl font-bold text-white tracking-tight mb-2">Dev Namdev</h1>
151151
<p class="text-slate-400 font-medium max-w-md">
152152
Full-Stack Engineer & UI/UX Enthusiast. Exploring the intersection of design and code.
153153
</p>
@@ -185,7 +185,7 @@ <h1 class="text-3xl font-bold text-white tracking-tight mb-2">Dev Developer</h1>
185185
Featured Projects</h2>
186186

187187
<!-- Project Link Card 1 -->
188-
<a href="/public/rd-fd.html"
188+
<a href="./rd-fd.html"
189189
class="group relative flex items-center gap-5 p-4 bg-white/[0.03] hover:bg-white/[0.08] border border-white/[0.05] hover:border-indigo-500/30 rounded-2xl transition-all duration-300 backdrop-blur-sm opacity-0 animate-fade-in-up delay-200 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 focus:ring-offset-slate-950">
190190
<div
191191
class="flex items-center justify-center w-12 h-12 rounded-xl bg-indigo-500/10 text-indigo-400 group-hover:scale-110 group-hover:bg-indigo-500 group-hover:text-white transition-all duration-300 shadow-[0_0_15px_rgba(99,102,241,0)] group-hover:shadow-[0_0_20px_rgba(99,102,241,0.4)]">
@@ -274,7 +274,7 @@ <h3 class="text-lg font-semibold text-slate-100 group-hover:text-purple-300 tran
274274
<!-- Footer -->
275275
<footer class="mt-auto pt-16 pb-4 w-full text-center opacity-0 animate-fade-in-up delay-500">
276276
<p class="text-sm text-slate-500">
277-
© <span id="year"></span> Dev Developer. All rights reserved.
277+
© <span id="year"></span> Dev Namdev. All rights reserved.
278278
</p>
279279
</footer>
280280

src/app/features/music/music.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h4 class="font-semibold truncate text-[var(--color-text)]">{{ currentSong.name
155155

156156
<footer
157157
class="fixed bottom-0 left-0 w-full bg-[var(--color-bg)]/80 backdrop-blur-md text-center text-xs py-3 z-30 text-gray-500 border-t border-white/5">
158-
© 2025 exwise. All rights reserved. v{{appVersion}}
158+
© {{year}} exwise. All rights reserved. v{{appVersion}}
159159
</footer>
160160

161161
<!-- Full Player Modal -->

src/app/features/music/music.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ export class MusicComponent implements OnDestroy {
2929
likedPlaylist: any[] = [];
3030
currentLikedIndex = -1;
3131
repeatCurrentSong = false;
32+
year: number = new Date().getFullYear();
33+
3234

3335
@ViewChild('searchSongInput') searchSongInput!: ElementRef;
3436

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<footer
22
class="hidden md:block fixed bottom-0 left-0 w-full bg-[var(--color-surface)] text-center text-sm py-2 z-50 text-muted">
3-
© 2026 exwise. All rights reserved. v{{appVersion}}
3+
© {{year}} exwise. All rights reserved. v{{appVersion}}
44
</footer>

src/app/shared/footer/footer.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ export class FooterComponent {
2121
*/
2222
appVersion: string = '';
2323

24+
year: number = new Date().getFullYear();
25+
2426
/**
2527
* Creates an instance of FooterComponent.
2628
*

src/environments/environments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const environment = {
3434
* This should be updated with each release to track application versions.
3535
* format: y.m.d
3636
*/
37-
applicationVersion: '26.02.22', // Current application version
37+
applicationVersion: '26.02.28', // Current application version
3838

3939
/**
4040
* The production (live) API base URL.

0 commit comments

Comments
 (0)