import type { Metadata } from "next";
import { ServicePage } from "@/components/sections/service-page";
export const metadata: Metadata = { title: "Dedicated Servers", description: "Run demanding workloads on enterprise-grade dedicated hardware with complete control, protected networking, and infrastructure support." };
const config = { title: "Dedicated Servers", eyebrow: "Bare metal without compromise", description: "Run demanding workloads on enterprise-grade dedicated hardware with complete control, protected networking, and infrastructure support.", price: "$79.99", plans: [{ name: "Essential", price: "$79.99", description: "Balanced resources for essential workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Business", price: "$129.99", description: "Balanced resources for business workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Enterprise", price: "$219.99", description: "Balanced resources for enterprise 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}/>}
