Website/components/AdBanner.tsx
TheClashFruit 844a9060de
All checks were successful
Lint Codebase / lint (push) Successful in 1m10s
feat: Next.js rewrite
2024-08-29 15:20:28 +02:00

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>
);
*/
}