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
14 changes: 14 additions & 0 deletions src/components/pages/MapPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,20 @@ function ProjectPopupContent({
</div>
</div>
)}
<div>
<div style={{ display: "flex", alignItems: "center", gap: 4, fontSize: 10, color: `${VERDE}99`, textTransform: "uppercase", letterSpacing: "0.05em", fontWeight: 500 }}>
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke={VERDE} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" />
<circle cx="9" cy="7" r="4" />
<path d="M22 21v-2a4 4 0 0 0-3-3.87" />
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
</svg>
Team
</div>
<div style={{ fontSize: 12, color: "#0A0703", fontWeight: 500, marginTop: 1 }}>
{project.team_size} {project.team_size === 1 ? "member" : "members"}
</div>
</div>
<div>
<div style={{ fontSize: 10, color: `${VERDE}99`, textTransform: "uppercase", letterSpacing: "0.05em", fontWeight: 500 }}>
Coordinates
Expand Down
1 change: 1 addition & 0 deletions src/types/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export interface ProjectResponse {
latitude: number | null
longitude: number | null
location_display_name: string | null
team_size: number
created_at: string
updated_at: string
}
Expand Down
Loading