diff --git a/src/containers/hero/layout-04/index.tsx b/src/containers/hero/layout-04/index.tsx index 5179edac0..38f30aa6a 100644 --- a/src/containers/hero/layout-04/index.tsx +++ b/src/containers/hero/layout-04/index.tsx @@ -89,10 +89,44 @@ const HeroArea = ({ className="tw-m-2.5" onClick={() => setOpen(true)} > - + {headings[0].content}{" "} + + {animatedText} + + + + )} + {texts?.map((text) => ( +

+ {text.content} +

+ ))} +
+ {buttons?.[0] && ( + + )} + {buttons?.[1] && ( + )} /> {buttons[1].content} diff --git a/tailwind.config.js b/tailwind.config.js index fa0c8123e..cc328acbd 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -179,6 +179,10 @@ module.exports = { // => @media (max-width: 1199px) { ... } maxLg: { max: "991px" }, // => @media (max-width: 991px) { ... } + mobileAnimation: { max: "493px" }, + // => @media (max-width: 495px) { ... } + mobileToTab: { max: "767px" }, + // => @media(max-width:767px) { ... } smToMd: { min: "576px", max: "767px" }, sm: "576px", // => @media (min-width: 576px) { ... }