complete footer
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user