Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/images/user/johng.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h3 class="text-base font-medium text-gray-800 dark:text-white/90">
Name
</span>
<span class="w-1/2 text-sm font-medium text-gray-700 sm:w-2/3 dark:text-gray-400">
Mushafrof Chowdhury
Mushafrof Gonzales
</span>
</li>
<li class="flex items-center gap-5 py-2.5">
Expand Down Expand Up @@ -102,7 +102,7 @@ <h4 class="text-title-xs mb-1 font-semibold text-gray-800 dark:text-white/90">
<label class="mb-1.5 block text-sm font-medium text-gray-700 dark:text-gray-400">
Last Name
</label>
<input type="text" value="Chowdhury"
<input type="text" value="Gonzales"
class="dark:bg-dark-900 shadow-theme-xs focus:border-brand-300 focus:ring-brand-500/10 dark:focus:border-brand-800 h-11 w-full rounded-lg border border-gray-300 bg-transparent px-4 py-2.5 text-sm text-gray-800 placeholder:text-gray-400 focus:ring-3 focus:outline-hidden dark:border-gray-700 dark:bg-gray-900 dark:text-white/90 dark:placeholder:text-white/30" />
</div>
<div class="sm:col-span-full">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="relative">
<button (click)="toggleDropdown()" class="flex items-center text-gray-700 dropdown-toggle dark:text-gray-400">
<span class="mr-3 overflow-hidden rounded-full h-11 w-11">
<img src="/images/user/owner.png" alt="User" />
<img src="/images/user/johng.jpg" alt="User" />
</span>
<span class="block mr-1 font-medium text-theme-sm">Musharof</span>
<span class="block mr-1 font-medium text-theme-sm">John John</span>
<svg [ngClass]="{
'stroke-gray-500 dark:stroke-gray-400 transition-transform duration-200': true,
'rotate-180': isOpen
Expand All @@ -17,7 +17,7 @@
className="absolute right-0 mt-[17px] flex w-[260px] flex-col rounded-2xl border border-gray-200 bg-white p-3 shadow-theme-lg dark:border-gray-800 dark:bg-gray-dark">
<div>
<span class="block font-medium text-gray-700 text-theme-sm dark:text-gray-400">
Musharof Chowdhury
John John Gonzales
</span>
<span class="mt-0.5 block text-theme-xs text-gray-500 dark:text-gray-400">
randomuser&#64;pimjo.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h2 class="mb-5 text-lg font-semibold text-gray-800 dark:text-white/90">
Name
</span>
<span class="w-1/2 text-sm text-gray-700 sm:w-2/3 dark:text-gray-400">
Mushafrof Chowdhury
John Gonzales
</span>
</li>
<li class="flex items-start gap-5 py-2.5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export class UserInfoCardComponent {
closeModal() { this.isOpen = false; }

user = {
firstName: 'Musharof',
lastName: 'Chowdhury',
firstName: 'John John',
lastName: 'Gonzales',
email: 'randomuser@pimjo.com',
phone: '+09 363 398 46',
bio: 'Team Manager',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ export class UserMetaCardComponent {

// Example user data (could be made dynamic)
user = {
firstName: 'Musharof',
lastName: 'Chowdhury',
firstName: 'John John',
lastName: 'Gonzales',
role: 'Team Manager',
location: 'Arizona, United States',
avatar: '/images/user/owner.jpg',
avatar: '/images/user/johng.jpg',
social: {
facebook: 'https://www.facebook.com/PimjoHQ',
x: 'https://x.com/PimjoHQ',
Expand Down