import { AnimationContainer, MaxWidthWrapper } from "@/components/global"; import { Button } from "@/components/ui/button"; import { LampContainer } from "@/components/ui/lamp"; import MagicBadge from "@/components/ui/magic-badge"; import { COMPANIES } from "@/utils"; import { ArrowRightIcon } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; const AnalyticsPage = () => { return ( <>

Advanced analytics for your business

Gain deep insights into your content performance with real-time analytics. Track record, device usage, and more to optimize your strategy.

Advanced analytics for your business

Trusted by the best in the industry

    {COMPANIES.map((company) => (
  • {company.name}
  • ))}

Powerup your content strategy

Take control of your content with advanced features and real-time insights. Simplify your workflow and achieve more.

); }; export default AnalyticsPage;