diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 1af1106f..6796c0f1 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -79,31 +79,35 @@ const CustomFooter: React.FC = () => { {(screens.md || expanded) && ( - {FOOTER_SECTION.sections.map((section: FooterSection) => ( - - - - {section.title} - - {section.links.map((link: FooterLink) => ( - ( + + + - {link.title} - - ))} - - - ))} + {section.title} + + {section.links.map((link: FooterLink) => ( + + {link.title} + + ))} + + + )) + ) : ( + No links available. + )} )} @@ -154,4 +158,4 @@ const CustomFooter: React.FC = () => { ); }; -export default CustomFooter; +export default CustomFooter; \ No newline at end of file