1
0
Fork 0
forked from CRSS/Website
Website-fixver/components/AdBanner.tsx

29 lines
956 B
TypeScript

'use client';
import styles from '@/styles/AdBanner.module.scss';
import { Info } from 'lucide-react';
export default function AdBanner() {
return (
<div className={styles.container} style={{ display: 'flex', justifyContent: 'center', marginBottom: '1.5rem' }}>
<iframe id='a4962f15' name='a4962f15' src='https://ads.theclashfruit.me/www/delivery/afr.php?zoneid=3&amp;cb=75234' frameBorder='0' scrolling='no' width='468' height='60' allow='autoplay'></iframe>
</div>
);
/*
return (
<div className={styles.adBanner}>
<div className={styles.adContent}>
</div>
<div className={styles.adRevive}>
<iframe id='a4962f15' name='a4962f15' src='https://ads.theclashfruit.me/www/delivery/afr.php?zoneid=3&amp;cb=75234' frameBorder='0' scrolling='no' width='468' height='60' allow='autoplay'></iframe>
</div>
<button className={styles.adInfo}>
<Info />
</button>
</div>
);
*/
}