mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 14:30:22 +00:00
17 lines
487 B
TypeScript
17 lines
487 B
TypeScript
const Advertisement = (): JSX.Element => {
|
|
return <div className='my-5 mx-auto py-12 w-full text-center text-white bg-gray-700'>
|
|
{
|
|
process.env.NODE_ENV === 'production' ? <ins
|
|
className='adsbygoogle mb-5 w-full'
|
|
style={{ display: 'block' }}
|
|
data-ad-client='ca-pub-4856582423981759'
|
|
data-ad-slot='3250141451'
|
|
data-ad-format='auto'
|
|
data-adtest='on'
|
|
data-full-width-responsive='true'
|
|
></ins> : 'Advertisement'
|
|
}</div>
|
|
}
|
|
|
|
export default Advertisement
|