File size: 723 Bytes
e7ef6c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// Example from https://beta.reactjs.org/learn
import { useState } from 'react'
import styles from './extratox.module.css'
function ExtraTox() {
return (
<>
<div className={styles.container}>
<span className={styles.h}>Sponsors</span>
<div className={styles.sponsors}>
<div className={styles.bg}>
<a href="https://t.me/TMWAD" className={styles.text}>
<img src='./tmwad.png' alt='TMWAD IMG' width={200} height={50}/>
</a>
</div>
</div>
<div className={styles.bgt}>
<a href="https://www.buymeacoffee.com/kalanakt" className={styles.text}>
Become Sponsor +
</a>
</div>
</div>
</>
)
}
export default ExtraTox;
|