Setup in Under 2 Minutes
Add cookieless analytics to your website with just a single line of code. No complex configuration required.
Quick Start
Get started with Seven by Radost IT in three simple steps.
Create Account
Sign up and create your first website project to get your unique site ID.
Add Code Snippet
Copy the tracking code and paste it in the <head> section of your website.
Start Tracking
Visit your website and verify your domain.
Basic Setup
<!-- Add this code before closing </head> tag -->
<script async src="https://cdn.radostit.com/seven.min.js" data-site-id="YOUR_SITE_ID"></script>Replace YOUR_SITE_ID with your actual site ID from the dashboard.
Why Seven by Radost IT?
100% Cookieless
No cookies, no consent banners, full GDPR compliance out of the box.
Lightweight
Less than 2KB script size. Won't slow down your website performance.
Privacy First
No personal data collection. Respects Do Not Track headers.
Framework Integration
Integration guides for popular frameworks and libraries.
React
React Setup
import { useEffect } from 'react';
function App() {
useEffect(() => {
const script = document.createElement('script');
script.src = 'https://cdn.radostit.com/seven.min.js';
script.async = true;
script.setAttribute('data-site-id', 'YOUR_SITE_ID');
document.head.appendChild(script);
return () => {
document.head.removeChild(script);
};
}, []);
return <div>Your App</div>;
}Next.js
Next.js Setup
// In your _app.js or _app.tsx
import Script from 'next/script';
function MyApp({ Component, pageProps }) {
return (
<>
<Script
src="https://cdn.radostit.com/seven.min.js"
data-site-id="YOUR_SITE_ID"
strategy="afterInteractive"
/>
<Component {...pageProps} />
</>
);
}
export default MyApp;Frequently Asked Questions
Do I need to display a cookie consent banner?
Seven by Radost IT doesn't use cookies or collect personal data. You will need a consent banner only if you use other cookie-based third party services or depending on your country's regulations.
Will this slow down my website?
No. Our tracking script is less than 2KB and loads asynchronously, so it won't affect your page load speed. It's significantly lighter than Google Analytics.
Is Seven by Radost IT GDPR compliant?
Yes! Seven by Radost IT is designed to be GDPR compliant by default. We don't collect personal data, don't use cookies, and don't track users across websites.
How accurate is the data?
Very accurate! Since we don't use cookies, we're not affected by cookie blockers or browser restrictions. You'll get more complete data than traditional analytics tools.
Ready to Get Started?
Create your free account and start tracking in minutes.