Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packages/core/constants/vps/amd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const AMD_PLANS: VpsPlanSpec[] = [
hardware: "amd",
description: "Maximum power for demanding applications and resource-heavy services.",
cpuModel: "AMD Ryzen™ 7 1700X",
priceGBP: 35,
priceGBP: 40,
cpu: 4,
ramGB: 16,
storageGB: 200,
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/components/Layouts/VPS/vps-hub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ function PlanCard({ plan }: { plan: VpsPlanSpec }) {
</div>
<div className="flex items-center gap-2 text-sm">
<Server className="w-3.5 h-3.5 text-muted-foreground shrink-0" />
<span className="font-medium">{plan.ramGB} GB RAM</span>
<span className="font-medium">{plan.ramGB} GB</span>
</div>
<div className="flex items-center gap-2 text-sm">
<HardDrive className="w-3.5 h-3.5 text-muted-foreground shrink-0" />
<span className="font-medium">{plan.storageGB} GB NVMe</span>
<span className="font-medium">{plan.storageGB} GB</span>
</div>
<div className="flex items-center gap-2 text-sm">
<Network className="w-3.5 h-3.5 text-muted-foreground shrink-0" />
Expand Down