app download icons added

This commit is contained in:
victorAnumudu
2024-12-16 08:57:42 +01:00
parent e3c7f1002f
commit eaba0f7088
3 changed files with 26 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

+26
View File
@@ -9,6 +9,9 @@ import siteLinks from '../../links/siteLinks'
import { loginUser } from '../../services/services'
import { updateUserDetails } from '../../store/UserDetails'
import GoogleDownload from '../../assets/img/download/andriod.jpg'
import IOSDownload from '../../assets/img/download/apple.jpg'
export default function Login() {
const dispatch = useDispatch()
@@ -97,6 +100,29 @@ export default function Login() {
</div>
</div>
</form>
<div class="row" style={{marginTop: '20px'}}>
<div class="col-6">
<div class="app-store-icons-wrap text-center">
<a className="icon google"
href='#'
// href="https://play.google.com/store/apps/details?id=com.mermsemr.providers" target="_blank"
>
<img src={IOSDownload} className='w-75 h-auto' alt='IOS Download' />
</a>
</div>
</div>
<div class="col-6">
<div class="app-store-icons-wrap text-center">
<a className="icon apple"
href='#'
// href="https://play.google.com/store/apps/details?id=com.mermsemr.providers" target="_blank"
>
<img src={GoogleDownload} className='w-75 h-auto' alt='IOS Download' />
</a>
</div>
</div>
</div>
</div>
</div>
</div>