Components
Loading preview...
Classic cta block with 2 buttons, center aligned
@shadcnblockscom
npx shadcn@latest add https://21st.dev/r/shadcnblockscom/shadcnblocks-com-cta11import { Cta11 } from "@/components/blocks/shadcnblocks-com-cta11"
const demoData = {
heading: "Ready to Get Started?",
description:
"Join thousands of satisfied customers using our platform to build amazing websites.",
buttons: {
primary: {
text: "Get Started",
url: "https://www.shadcnblocks.com",
},
secondary: {
text: "Learn More",
url: "https://www.shadcnblocks.com",
},
},
};
function Cta11Demo() {
return <Cta11 {...demoData} />;
}
export { Cta11Demo };