import type { Metadata } from "next";
import { ServicePage } from "@/components/sections/service-page";
export const metadata: Metadata = { title: "Cloud VPS Hosting", description: "Deploy production applications on high-performance virtual servers with dedicated compute, NVMe storage, root access, and fast provisioning." };
const config = { title: "Cloud VPS Hosting", eyebrow: "Dedicated resources. Cloud flexibility.", description: "Deploy production applications on high-performance virtual servers with dedicated compute, NVMe storage, root access, and fast provisioning.", price: "$8.99", plans: [{ name: "Compute 2", price: "$8.99", description: "Balanced resources for compute 2 workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Compute 4", price: "$17.99", description: "Balanced resources for compute 4 workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Compute 8", price: "$34.99", description: "Balanced resources for compute 8 workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] }] };
export default function Page(){return <ServicePage config={config}/>}
