@@ -2,6 +2,7 @@ import { createPageMetadata } from "@/lib/page-metadata";
22import { Accordion , Accordions , Button } from "@prisma/eclipse" ;
33import { faqs } from "./pricing-data" ;
44import { PricingPageContent } from "./pricing-page-content" ;
5+ import { PageFooterCta } from "@/components/page-footer-cta" ;
56
67export const metadata = createPageMetadata ( {
78 title : "Prisma Pricing | Prisma Postgres Plans and Usage-Based Pricing" ,
@@ -50,40 +51,19 @@ export default function PricingPage() {
5051 </ div >
5152 </ section >
5253
53- { /* Try Prisma Postgres */ }
54- < section className = "bg-radial from-background-ppg from-0% to-background-default to-70% px-4 py-12" >
55- < div className = "mx-auto rounded-2xl bg-[url('/illustrations/homepage/footer_grid.svg')] bg-cover bg-center px-4 py-12" >
56- < div className = "p-4 md:p-8" >
57- < div className = "mx-auto flex max-w-[580px] flex-col items-center gap-8 text-center" >
58- < div className = "flex flex-col items-center gap-4" >
59- < h2 className = "text-3xl text-foreground-neutral font-sans-display stretch-display" >
60- Try Prisma Postgres
61- </ h2 >
62- < p className = "text-foreground-neutral-weak" >
63- Deploy a Postgres database instantly.
64- </ p >
65- </ div >
66- < div className = "flex flex-col gap-6 md:flex-row" >
67- < Button asChild variant = "ppg" size = "2xl" >
68- < a href = "https://console.prisma.io/sign-up?utm_source=website& utm_medium = pricing & utm_campaign = cta " >
69- Create your first Database
70- < i className = "fa-regular fa-arrow-right" />
71- </ a >
72- </ Button >
73- < Button asChild variant = "default-strong" size = "2xl" >
74- < a href = "https://www.prisma.io/docs/" >
75- Read the docs
76- < i className = "fa-regular fa-book-open" />
77- </ a >
78- </ Button >
79- </ div >
80- < h6 className = "mb-0! -mt-4 text-xs text-foreground-neutral-weaker" >
81- Free to get started, no credit card needed.
82- </ h6 >
83- </ div >
84- </ div >
85- </ div >
86- </ section >
54+ < PageFooterCta
55+ title = "Try Prisma Postgres"
56+ description = "Deploy a Postgres database instantly."
57+ btns = { [
58+ {
59+ url : `https://console.prisma.io/sign-up?utm_source=website&utm_medium=pricing&utm_campaign=cta` ,
60+ text : "Create your first Database" ,
61+ external : true ,
62+ } ,
63+ { url : "https://www.prisma.io/docs" , text : "Read the docs" } ,
64+ ] }
65+ footer = "Free to get started, no credit card needed."
66+ />
8767 </ main >
8868 ) ;
8969}
0 commit comments