diff --git a/app/components/home/VisaSolutions.tsx b/app/components/home/VisaSolutions.tsx index c11bbcc..bd637c5 100644 --- a/app/components/home/VisaSolutions.tsx +++ b/app/components/home/VisaSolutions.tsx @@ -28,7 +28,7 @@ const VisaSolutions = ({ data }: VisaSolutionsProps) => {
-
+
{item.number}

diff --git a/app/components/layout/Footer/FooterBottom.tsx b/app/components/layout/Footer/FooterBottom.tsx index 5e32054..b708b2c 100644 --- a/app/components/layout/Footer/FooterBottom.tsx +++ b/app/components/layout/Footer/FooterBottom.tsx @@ -1,23 +1,22 @@ import Link from 'next/link'; +import footerData from './footer.json'; const FooterBottom = () => { + const { bottom } = footerData; + return (

- Copyright© GRAMENTHEME All Rights Reserved. + {bottom.copyright.text} {bottom.copyright.brand} {bottom.copyright.rights}

    -
  • - Terms & Conditions -
  • -
  • - Privacy Policy -
  • -
  • - Contact Us -
  • + {bottom.menuLinks.map((item, index) => ( +
  • + {item.label} +
  • + ))}
diff --git a/app/components/layout/Footer/FooterTop.tsx b/app/components/layout/Footer/FooterTop.tsx index b954267..52c388b 100644 --- a/app/components/layout/Footer/FooterTop.tsx +++ b/app/components/layout/Footer/FooterTop.tsx @@ -1,46 +1,37 @@ import Link from 'next/link'; +import footerData from './footer.json'; const FooterTop = () => { + const { top } = footerData; + return ( -