
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Profile page composition: gradient cover banner with an overlapping ringed avatar, identity row with role badge plus edit button and a kebab actions menu, an inline follower stats row, and tabs for Overview (bio + icon detail rows), Activity (muted-tile feed), and Projects (progress cards). All data is hardcoded inline for you to replace.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/user-profile-page.json$npx shadcn@latest add https://uipkge.dev/r/react/user-profile-page.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/user-profile-page.json$bunx shadcn@latest add https://uipkge.dev/r/react/user-profile-page.jsonnpx shadcn@latest add @uipkge-react/user-profile-pageInstalls to:components/blocks/Type aliases exported from this item's source. Use these to shape the data you pass in.
DetailRowinterface DetailRow {
icon: ComponentType<{ className?: string }>
label: string
value: string
}ActivityIteminterface ActivityItem {
icon: ComponentType<{ className?: string }>
sentence: string
time: string
}ProjectCardinterface ProjectCard {
name: string
description: string
progress: number
}'use client'
import type { ComponentType } from 'react'
import {
CalendarDays,
FilePlus2,
GitCommitHorizontal,
Link,
Mail,
MapPin,
MessageSquare,
MoreHorizontal,
Star,
} from 'lucide-react'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu'
import { Progress } from '@/components/ui/progress'
import { Separator } from '@/components/ui/separator'
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'
interface DetailRow {
icon: ComponentType<{ className?: string }>
label: string
value: string
}
interface ActivityItem {
icon: ComponentType<{ className?: string }>
sentence: string
time: string
}
interface ProjectCard {
name: string
description: string
progress: number
}
const details: DetailRow[] = [
{ icon: Mail, label: 'Email', value: '[email protected]' },
{ icon: MapPin, label: 'Location', value: 'Lisbon, Portugal' },
{ icon: CalendarDays, label: 'Joined', value: 'March 2023' },
{ icon: Link, label: 'Website', value: 'amaraosei.dev' },
]
const activity: ActivityItem[] = [
{ icon: GitCommitHorizontal, sentence: 'Pushed 6 commits to design-tokens', time: '2h ago' },
{ icon: MessageSquare, sentence: 'Commented on "Sidebar collapse behavior"', time: '5h ago' },
{ icon: FilePlus2, sentence: 'Created project Marketing site refresh', time: 'Yesterday' },
{ icon: Star, sentence: 'Starred repository uipkge-ui', time: '3d ago' },
]
const projects: ProjectCard[] = [
{ name: 'Design tokens', description: 'Shared OKLCH palette and theme bindings.', progress: 92 },
{ name: 'Marketing site', description: 'Astro rebuild of the public landing pages.', progress: 64 },
{ name: 'Component audit', description: 'Parity pass across Vue and React mirrors.', progress: 41 },
{ name: 'Docs search', description: 'Client-side fuzzy search over registry items.', progress: 18 },
]
export function UserProfilePage() {
return (
<div
data-slot="user-profile-page"
className="bg-background border-border overflow-hidden rounded-xl border shadow-xs"
>
<div className="from-primary/20 via-primary/5 h-32 bg-gradient-to-br to-transparent" aria-hidden="true" />
<div className="px-6 pb-6">
<div className="ring-background -mt-10 ml-6 flex size-20 items-center justify-center rounded-full ring-4">
<Avatar size="2xl" className="size-20">
<AvatarImage src="https://i.pravatar.cc/160?img=47" alt="Amara Osei" />
<AvatarFallback>AO</AvatarFallback>
</Avatar>
</div>
<div className="mt-4 flex flex-wrap items-start justify-between gap-4">
<div>
<div className="flex flex-wrap items-center gap-2">
<h1 className="text-xl font-semibold tracking-tight">Amara Osei</h1>
<Badge variant="secondary">Design engineer</Badge>
</div>
<p className="text-muted-foreground mt-1 text-sm">@amara</p>
</div>
<div className="flex items-center gap-2">
<Button variant="outline" size="sm">
Edit profile
</Button>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost" size="icon" aria-label="More actions">
<MoreHorizontal className="size-4" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem>Copy profile link</DropdownMenuItem>
<DropdownMenuItem>Share…</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem variant="destructive">Block user</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
<p className="mt-4 text-sm">
<span className="font-semibold">24</span> <span className="text-muted-foreground">Projects</span>
<span className="font-semibold">1,248</span> <span className="text-muted-foreground">Followers</span>
<span className="font-semibold">380</span> <span className="text-muted-foreground">Following</span>
</p>
<Tabs defaultValue="overview" className="mt-6 gap-4">
<TabsList>
<TabsTrigger value="overview">Overview</TabsTrigger>
<TabsTrigger value="activity">Activity</TabsTrigger>
<TabsTrigger value="projects">Projects</TabsTrigger>
</TabsList>
<TabsContent value="overview" className="space-y-6 pt-2">
<p className="max-w-prose text-sm leading-relaxed">
Design engineer focused on token systems and component architecture. Previously at a fintech startup, now
building the shared UI language for Acme. Writes about OKLCH color and registry-driven workflows.
</p>
<Separator />
<dl className="grid gap-x-8 gap-y-4 sm:grid-cols-2">
{details.map((detail) => (
<div key={detail.label} className="flex items-center gap-3">
<detail.icon className="text-muted-foreground size-4 shrink-0" aria-hidden="true" />
<dt className="text-muted-foreground text-sm">{detail.label}</dt>
<dd className="ml-auto text-sm font-medium">{detail.value}</dd>
</div>
))}
</dl>
</TabsContent>
<TabsContent value="activity" className="pt-2">
<ul className="divide-y">
{activity.map((item) => (
<li key={item.sentence} className="flex items-center gap-3 py-3 first:pt-0 last:pb-0">
<span className="bg-muted text-muted-foreground flex size-8 shrink-0 items-center justify-center rounded-md">
<item.icon className="size-4" aria-hidden="true" />
</span>
<p className="min-w-0 flex-1 truncate text-sm">{item.sentence}</p>
<time className="text-muted-foreground text-xs whitespace-nowrap">{item.time}</time>
</li>
))}
</ul>
</TabsContent>
<TabsContent value="projects" className="pt-2">
<div className="grid gap-4 sm:grid-cols-2">
{projects.map((project) => (
<Card key={project.name}>
<CardHeader>
<CardTitle className="text-sm font-medium">{project.name}</CardTitle>
<CardDescription className="truncate text-sm">{project.description}</CardDescription>
</CardHeader>
<CardContent className="flex items-center gap-3">
<Progress value={project.progress} className="flex-1" />
<span className="text-muted-foreground text-xs tabular-nums">{project.progress}%</span>
</CardContent>
</Card>
))}
</div>
</TabsContent>
</Tabs>
</div>
</div>
)
}
Raw manifest:https://uipkge.dev/r/react/user-profile-page.json