diff --git a/components/Common/CtaBanner/index.jsx b/components/Common/CtaBanner/index.jsx index 93ac0488..9647a8c7 100644 --- a/components/Common/CtaBanner/index.jsx +++ b/components/Common/CtaBanner/index.jsx @@ -37,7 +37,7 @@ const CtaBanner = ({bgVersion, title, subTitle, buttonText, buttonUrl}) => { className={`w-full px-4 py-4 tablet:px-12 tablet:py-16 my-10 rounded-2xl bg-no-repeat bg-cover bg-right-top relative min-h-[450px] tablet:min-h-[300px] border-3 border-white ${bgStyle} `} >
-
+
{title || defaultTitle}
diff --git a/pages/blog/[slug].js b/pages/blog/[slug].js index 4b3b43c2..58731dfd 100644 --- a/pages/blog/[slug].js +++ b/pages/blog/[slug].js @@ -29,11 +29,27 @@ import errorPage from '../404'; import {MainLayout} from '../../layouts'; import TOC from '../../components/Posts/TOC'; +const CTA_TITLE = + 'Today everyone is generating code, but do you have the guts to deploy it to production?'; +const CTA_SUB_TITLE = 'Amplication - generate a code you can trust!'; + const CTA1 = () => { - return ; + return ( + + ); }; const CTA2 = () => { - return ; + return ( + + ); }; const Post = ({posts, post}) => {