import type { Metadata } from "next";
import { ContentHero } from "@/components/sections/content-page";
import { HostingCalculator } from "@/components/sections/calculator";
import { Products, FAQ, CTA } from "@/components/sections/shared";
export const metadata: Metadata={title:"Hosting Pricing"};
export default function Page(){return <><ContentHero eyebrow="Simple pricing" title="Hosting plans that scale with your ambition" description="Compare transparent hosting options or configure a sample cloud server for your workload."/><section className="pb-10"><div className="section-shell"><HostingCalculator/></div></section><Products/><FAQ/><CTA/></>}
