import React from "react"; import { motion } from "framer-motion"; import { Camera, Laptop, Instagram, Youtube, TrendingUp, Megaphone, Palette, Clapperboard, MapPin, Users, Stethoscope, Building2, Home, ArrowRight, Sparkles, PlayCircle, BarChart3, Target, PenTool, Zap, } from "lucide-react"; const fadeUp = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0 }, }; const services = [ { title: "Instagram Growth", icon: Instagram }, { title: "Social Media Management", icon: Megaphone }, { title: "YouTube Management", icon: Youtube }, { title: "Meta Ads", icon: Target }, { title: "Content Creation", icon: Clapperboard }, { title: "Graphic Design", icon: Palette }, { title: "Reel Editing", icon: PlayCircle }, { title: "GMB Optimization", icon: MapPin }, ]; const audiences = [ { title: "Coaches & Trainers", icon: Users }, { title: "Doctors & Clinics", icon: Stethoscope }, { title: "Business Owners", icon: Building2 }, { title: "Real Estate", icon: Home }, ]; const whyChoose = [ "5+ years experience", "content strategy", "lead generation", "branding expertise", "creative storytelling", ]; const portfolio = [ "Social Media Creatives", "Reels", "Thumbnails", "Branding Work", "Marketing Visuals", ]; function GlowCard({ children, className = "" }) { return (
{children}
); } export default function AdviggoPremiumWebsite() { return (
Premium Growth Partner For Modern Brands Build Your Brand. Grow Your Business Online. Smart strategies. Creative content. Real results.

Camera Setup

Studio Ready

Editing Screen

Content Engine

Instagram Reels

High Reach

YouTube Icons

More Views

Social Media Growth

{services.map(({ title, icon: Icon }) => (

{title}

))}
{audiences.map(({ title, icon: Icon }) => (

{title}

))}
{whyChoose.map((item, index) => (
0{index + 1}

{item}

))}
{portfolio.map((item, index) => (
{index % 2 === 0 ? : }

{item}

))}

Contact CTA

Ready To Grow Your Brand?

); } function SectionHeader({ eyebrow, title, align = "center" }) { return (

{eyebrow}

{title}

); }