
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Header-grade profile/account dropdown. Slot-trigger DropdownMenu the consumer wraps around their own avatar button (default trigger ships an Avatar fallback). Sections: upgrade, account/billing/notifications/settings, log out. Emits `select` with the chosen item key so consumers wire navigation and auth themselves.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/profile-menu.json$npx shadcn@latest add https://uipkge.dev/r/react/profile-menu.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/profile-menu.json$bunx shadcn@latest add https://uipkge.dev/r/react/profile-menu.jsonnpx shadcn@latest add @uipkge-react/profile-menuInstalls to:components/blocks/| Name | Type / Values | Default | Required |
|---|---|---|---|
user | User | — | optional |
triggeromitted, a default avatar button is rendered. | (ctx: { user: User; initials: string }) => React.ReactNode | — | optional |
onSelect | (key: ProfileMenuKey) => void | — | optional |
Type aliases exported from this item's source. Use these to shape the data you pass in.
Userinterface User {
name: string
email: string
avatar?: string
}'use client'
import * as React from 'react'
import { BadgeCheck, Bell, CreditCard, LogOut, Settings, Zap } from 'lucide-react'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu'
interface User {
name: string
email: string
avatar?: string
}
type ProfileMenuKey = 'upgrade' | 'account' | 'billing' | 'notifications' | 'settings' | 'logout'
export interface ProfileMenuProps {
user?: User
/** Custom trigger. Receives the resolved user + computed initials. When
* omitted, a default avatar button is rendered. */
trigger?: (ctx: { user: User; initials: string }) => React.ReactNode
onSelect?: (key: ProfileMenuKey) => void
}
export function ProfileMenu({
user = { name: 'Alex Morgan', email: '[email protected]', avatar: '' },
trigger,
onSelect,
}: ProfileMenuProps) {
const initials = React.useMemo(() => {
const parts = user.name.trim().split(/\s+/).slice(0, 2)
return parts.map((p) => p[0]?.toUpperCase()).join('') || 'U'
}, [user.name])
return (
<DropdownMenu data-slot="profile-menu">
<DropdownMenuTrigger asChild>
{trigger ? (
trigger({ user, initials })
) : (
<button
type="button"
className="hover:bg-accent focus-visible:ring-ring flex size-8 items-center justify-center rounded-lg transition-colors focus-visible:ring-1 focus-visible:outline-none"
aria-label="Open profile menu"
>
<Avatar className="size-7">
{user.avatar ? <AvatarImage src={user.avatar} alt={user.name} /> : null}
<AvatarFallback className="bg-primary/10 text-primary text-xs font-semibold">{initials}</AvatarFallback>
</Avatar>
</button>
)}
</DropdownMenuTrigger>
<DropdownMenuContent className="w-60 rounded-lg" align="end" sideOffset={8}>
<DropdownMenuLabel className="p-0 font-normal">
<div className="flex items-center gap-2 px-1 py-1.5 text-left text-sm">
<Avatar className="size-9 rounded-lg">
{user.avatar ? <AvatarImage src={user.avatar} alt={user.name} /> : null}
<AvatarFallback className="bg-primary/10 text-primary rounded-lg text-xs font-semibold">
{initials}
</AvatarFallback>
</Avatar>
<div className="grid flex-1 text-left leading-tight">
<span className="truncate text-sm font-semibold">{user.name}</span>
<span className="text-muted-foreground truncate text-xs">{user.email}</span>
</div>
</div>
</DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuGroup>
<DropdownMenuItem onSelect={() => onSelect?.('upgrade')}>
<Zap className="size-4" />
Upgrade to Pro
</DropdownMenuItem>
</DropdownMenuGroup>
<DropdownMenuSeparator />
<DropdownMenuGroup>
<DropdownMenuItem onSelect={() => onSelect?.('account')}>
<BadgeCheck className="size-4" />
Account
</DropdownMenuItem>
<DropdownMenuItem onSelect={() => onSelect?.('billing')}>
<CreditCard className="size-4" />
Billing
</DropdownMenuItem>
<DropdownMenuItem onSelect={() => onSelect?.('notifications')}>
<Bell className="size-4" />
Notifications
</DropdownMenuItem>
<DropdownMenuItem onSelect={() => onSelect?.('settings')}>
<Settings className="size-4" />
Settings
</DropdownMenuItem>
</DropdownMenuGroup>
<DropdownMenuSeparator />
<DropdownMenuItem onSelect={() => onSelect?.('logout')}>
<LogOut className="size-4" />
Log out
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
)
}
Raw manifest:https://uipkge.dev/r/react/profile-menu.json