Files
fad-trade-next/app/GoogleAdsense.tsx
砂糖 7cd50654ed init
2025-11-21 13:36:06 +08:00

25 lines
523 B
TypeScript

"use client";
import Script from "next/script";
const GoogleAdsense = () => {
return (
<>
{process.env.NEXT_PUBLIC_GOOGLE_ADSENSE_ID ? (
<>
<Script
async
src={`https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-${process.env.NEXT_PUBLIC_GOOGLE_ADSENSE_ID}`}
crossOrigin="anonymous"
strategy="afterInteractive"
/>
</>
) : (
<></>
)}
</>
);
};
export default GoogleAdsense;