Skip to main content

Analytics Setup

This section is your comprehensive guide to integrating and managing analytics and tracking tools on Blink. Whether you're looking to monitor user behavior, optimize marketing campaigns, or gain deeper insights into your audience we got you covered.

info

Our platform seamlessly supports:

  • Google Analytics
  • Google AdSense
  • Facebook Pixel
  • Microsoft Clarity
  • TikTok Pixel
  • LinkedIn Insight

Explore step-by-step instructions, best practices, and troubleshooting tips to make the most of these powerful tools and drive data-driven decisions for your business. Let’s turn data into actionable insights!

  • Get the tracking id for Google Analytics or any other platform motioned above.
  • Open frontend code, then head over to .env.local file. In the analytics section, write the id.

Analytics Environment Setup

  • Then go to analytics folder and open analytics-integration.jsxfile. Uncomment any service that you want to integrate. For example if you want to implement Google Analytics, then uncomment <GoogleAnalyticsIntegration />.

Analytics Setup

Example: We activated Google Analytics and Facebook Pixel

/analytics/analytics-integration.jsx
{/* Google Analytics */}
<GoogleAnalyticsIntegration />

{/* Google Adsense */}
{/* <GoogleAdsenseIntegration /> */}

{/* Facebook Pixel */}
<FacebookPixelIntegration />

{/* Linkedin Insight */}
{/* <LinkedinInsightIntegration /> */}

{/* Microsoft clarity */}
{/* <MicrosoftClarityIntegration /> */}

{/* Tiktok Pixel */}
{/* <TiktokPixelIntegration /> */}
  • That's it. Our analytics is ready to go.