'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { Palette, Upload, TrendingUp, Settings, ShoppingBag } from 'lucide-react' const tabs = [ { href: '/', label: 'Create', icon: Palette }, { href: '/upload', label: 'Upload', icon: Upload }, { href: '/trending', label: 'Trending', icon: TrendingUp }, { href: '/shop', label: 'Shop', icon: ShoppingBag }, { href: '/settings', label: 'Settings', icon: Settings }, ] export default function Header() { const pathname = usePathname() return (
AI

Video Flow

) }