complete footer

This commit is contained in:
Alihaghighattalab
2024-08-06 14:46:40 +03:30
parent 49b25481ce
commit ee1fa04d3b
11 changed files with 88 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
import { SocialsInterface } from "../../../types"
import { socialsList } from "../../../utility/socials"
export const Footer = () => {
return (
<footer className="w-full flex flex-row gap-x-2 justify-end items-center">
{socialsList?.map((item: SocialsInterface) => <img key={item?.name} src={item?.path} alt={item?.name} className="size-10 min-w-10 min-h-10 cursor-pointer" />)}
</footer>
)
}