feat: marketplace GPU spec cards with VRAM, CUDA, region, pricing

- Add GPU fields to OfferRecord type (gpu_model, gpu_memory_gb, etc.)
- Replace flat table with responsive GPU offer cards
- Show GPU model, VRAM, GPU count, CUDA version, capacity specs
- Display pricing and SLA with provider + region
- Add offer-card CSS with spec grid, hover effects, responsive layout
This commit is contained in:
oib
2026-02-14 16:52:17 +01:00
parent 182e8572fa
commit 417259171a
3 changed files with 129 additions and 26 deletions

View File

@@ -9,6 +9,13 @@ interface OfferRecord {
price: number;
sla: string;
status: string;
created_at?: string;
gpu_model?: string;
gpu_memory_gb?: number;
gpu_count?: number;
cuda_version?: string;
price_per_hour?: number;
region?: string;
}
interface OffersResponse {