import type { Metadata } from "next";
import { ServicePage } from "@/components/sections/service-page";
export const metadata: Metadata = { title: "Reseller Hosting", description: "Launch a professional white-label hosting service with WHM control, isolated client accounts, private nameservers, and scalable capacity." };
const config = { title: "Reseller Hosting", eyebrow: "Build your hosting business", description: "Launch a professional white-label hosting service with WHM control, isolated client accounts, private nameservers, and scalable capacity.", price: "$14.99", plans: [{ name: "Launch", price: "$14.99", description: "Balanced resources for launch workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Agency", price: "$29.99", description: "Balanced resources for agency workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Scale", price: "$49.99", description: "Balanced resources for scale 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}/>}
