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/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const LINKS = {
githubDiscussions: "https://github.com/orgs/NodeByteHosting/discussions",
twitter: "https://twitter.com/NodeByteHosting",
trustpilot: "https://uk.trustpilot.com/review/nodebyte.host",
status: "https://nodebytestat.us",
status: "https://status.nodebyte.host",
contact: "/contact",
billing: {
root: "https://billing.nodebyte.host",
Expand Down
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
6 changes: 3 additions & 3 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 Expand Up @@ -270,7 +270,7 @@ export function VpsHub({ plans }: VpsHubProps) {
</span>
</h1>
<p className="text-lg text-muted-foreground">
Enterprise KVM virtual servers across multiple hardware lineups. Full root access, NVMe SSD, and DDoS protection on every plan.
Enterprise KVM virtual servers across multiple hardware lineups. Full root access and DDoS protection on every plan.
</p>
</div>

Expand Down