16 lines
510 B
TypeScript
16 lines
510 B
TypeScript
import styles from "./footer.module.css"
|
|
|
|
const MidFooter = () => {
|
|
return (
|
|
<div className={`h-[2.3125rem] text-[1.25rem] ${styles.lower_footer}`}>
|
|
<div className="containerMode flex justify-end p-[.375rem] w-full text-white font-medium text-[.6875rem] md:text-[1.25rem]">
|
|
<div className="flex gap-2 items-center justify-end px-2 text-[11px] md:text-[13px]">
|
|
<p className="text-[20px] font-extralight">my bank and I</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MidFooter
|