added admin login page
This commit was merged in pull request #8.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import React from 'react'
|
||||
import { Link } from 'react-router-dom'
|
||||
|
||||
import FBook from '../../assets/icons/facebook.svg'
|
||||
import Twitter from '../../assets/icons/twitter.svg'
|
||||
import Instagram from '../../assets/icons/instagram.svg'
|
||||
|
||||
export default function Footer() {
|
||||
|
||||
let socialsIcons = [
|
||||
{name: 'facebook', image: FBook},
|
||||
{name: 'twitter', image: Twitter},
|
||||
{name: 'instagram', image: Instagram},
|
||||
]
|
||||
|
||||
return (
|
||||
<div className='w-full h-10 absolute bottom-0 bg-sky-50/50 flex items-center'>
|
||||
<div className='containerMode flex justify-between items-center flex-wrap gap-2'>
|
||||
<p className='text-[10px]'>{new Date().getFullYear()} @ First City Monument Bank Limited</p>
|
||||
<div className='footer-social-icons flex justify-end items-center gap-2'>
|
||||
{socialsIcons.map((icon, index)=>(
|
||||
<Link key={index} className='w-5 h-5' to='#'>
|
||||
<img src={icon.image} alt={icon.name} />
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
import Footer from "./Footer";
|
||||
|
||||
export { Footer };
|
||||
Reference in New Issue
Block a user