import type { Metadata } from "next";
import { ServicePage } from "@/components/sections/service-page";
export const metadata: Metadata = { title: "Shared Hosting", description: "Premium shared hosting for business websites, stores, portfolios, and content platforms that need reliable performance without server administration." };
const config = { title: "Shared Hosting", eyebrow: "Fast, secure websites", description: "Premium shared hosting for business websites, stores, portfolios, and content platforms that need reliable performance without server administration.", price: "$2.99", plans: [{ name: "Starter", price: "$2.99", description: "Balanced resources for starter workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Business", price: "$6.99", description: "Balanced resources for business workloads and dependable growth.", features: ["NVMe storage", "Free SSL certificate", "Automated backups", "24/7 monitoring", "Migration assistance"] },{ name: "Performance", price: "$12.99", description: "Balanced resources for performance 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}/>}
