complete footer and home layout page created

This commit is contained in:
Ebube
2024-03-18 15:52:12 +01:00
parent 32acf978c3
commit db08d1201c
14 changed files with 174 additions and 24 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ const TopFooterOneMenu: React.FC<TopFooterOneMenuProps> = ({
{subItems.map(({ href = "#", text }) => (
<li
key={text}
className="text-[.6875rem] text-[#5e2785] hover:underline"
className="text-[.6875rem] text-[#5e2785] hover:underline w-fit"
>
{href ? <Link to={href}>{text}</Link> : <span>{text}</span>}
</li>