1- import { PageHeader } from "@/components/PageHeader" ;
2- import { Badge } from "@zenml-io/react-component-library" ;
3- import { CommandSection , InfoBox } from "./Fragments" ;
4- import { CTASection , modelFeatures } from "@/contents/cloud-only" ;
51import MCP from "@/assets/images/mcp.webp" ;
2+ import { PageHeader } from "@/components/PageHeader" ;
3+ import { ProBadge } from "@/components/pro/ProBadge" ;
4+ import {
5+ ProButtons ,
6+ ProFeatureList ,
7+ ProHeadline ,
8+ ProImage ,
9+ ProInfoBadge ,
10+ ProWrapper
11+ } from "@/components/pro/ProCta" ;
612import { useTourContext } from "@/components/tour/TourContext" ;
713import { useEffect } from "react" ;
14+ import { CommandSection } from "./Fragments" ;
815
916export default function ModelsPage ( ) {
1017 const {
@@ -22,17 +29,41 @@ export default function ModelsPage() {
2229 < div >
2330 < PageHeader className = "flex items-center gap-1" >
2431 < h1 className = "text-display-xs font-semibold" > Models</ h1 >
25- < Badge color = "purple" rounded size = "sm" >
26- < span className = "font-semibold text-primary-500" > Pro</ span >
27- </ Badge >
32+ < ProBadge />
2833 </ PageHeader >
2934 < div className = "layout-container space-y-5 py-5" >
30- < InfoBox />
31- < CTASection
32- feature = "model"
33- image = { { src : MCP , alt : "Screenshot of the ZenML Pro Model Control plane" } }
34- features = { modelFeatures }
35- />
35+ < ProWrapper className = "relative overflow-y-hidden" >
36+ < div className = "w-full max-w-none space-y-5 lg:max-w-[900px]" >
37+ < ProHeadline > Access Advanced Model Management Features with ZenML Pro</ ProHeadline >
38+ < ProInfoBadge />
39+ < ProFeatureList
40+ features = { [
41+ {
42+ title : "Model Control Plane Dashboard" ,
43+ subtitle : "Centralized model management and monitoring"
44+ } ,
45+ {
46+ title : "Enterprise Security" ,
47+ subtitle : "Social SSO, RBAC, and User Management"
48+ } ,
49+ {
50+ title : "Managed ZenML Server" ,
51+ subtitle : "On your VPC or hosted on our infrastructure"
52+ } ,
53+ {
54+ title : "Advanced MLOps" ,
55+ subtitle : "CI/CD/CT, Artifact Control Plane and more"
56+ }
57+ ] }
58+ />
59+ < ProButtons />
60+ </ div >
61+ < ProImage
62+ className = "flex-1 translate-x-[10%] translate-y-[20%] scale-110"
63+ src = { MCP }
64+ alt = "Screenshot of the ZenML Pro Artifact Control Plane"
65+ />
66+ </ ProWrapper >
3667 < CommandSection />
3768 </ div >
3869 </ div >
0 commit comments