Before Width: | Height: | Size: 445 KiB |
Before Width: | Height: | Size: 605 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 238 KiB |
After Width: | Height: | Size: 564 KiB |
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 377 KiB |
Before Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 270 KiB |
@ -1,7 +1,34 @@ |
|||||||
|
import robotLogo from "../../assets/images/logo-robot.png"; |
||||||
|
|
||||||
type Props = {}; |
type Props = {}; |
||||||
|
|
||||||
const Footer = (props: Props) => { |
const Footer = (props: Props) => { |
||||||
return <div className="container mx-auto bg-white">Footer</div>; |
return ( |
||||||
|
<div className="container mx-auto flex justify-between text-white py-12"> |
||||||
|
<div className="md:w-1/4 flex gap-2 items-center"> |
||||||
|
<div className="bg-white rounded-full overflow-hidden p-1"> |
||||||
|
<img |
||||||
|
src={robotLogo} |
||||||
|
className="w-10 transition-all duration-150 rounded-full" |
||||||
|
alt="" |
||||||
|
/> |
||||||
|
</div> |
||||||
|
<h4 className="text-xl transition-all duration-150 text-white uppercase font-bold"> |
||||||
|
SGPT |
||||||
|
</h4> |
||||||
|
</div> |
||||||
|
<div className="md:w-1/4 flex gap-2 items-center"> |
||||||
|
Copyright 2023 SGPT |
||||||
|
</div> |
||||||
|
|
||||||
|
<div className="md:w-2/5 flex justify-between items-center"> |
||||||
|
<p>NFT Systems</p> |
||||||
|
<p>Team</p> |
||||||
|
<p>Privacy Policy</p> |
||||||
|
<p>Terms & Conditions</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
}; |
}; |
||||||
|
|
||||||
export default Footer; |
export default Footer; |
||||||
|