You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
import robotLogo from "../../assets/images/logo-robot.png";
|
|
|
|
type Props = {};
|
|
|
|
const Footer = (props: Props) => {
|
|
return (
|
|
<div className="container mx-auto md: px-4 flex flex-col gap-4 items-center md:flex-row 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 className="text-center">NFT Systems</p>
|
|
<p className="text-center">Team</p>
|
|
<p className="text-center">Privacy Policy</p>
|
|
<p className="text-center">Terms & Conditions</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|
|
|