import { APP_VERSION } from '@/config/app' interface AppVersionProps { className?: string } /** نمایش نسخه اپ از package.json (via NEXT_PUBLIC_APP_VERSION) */ const AppVersion = ({ className = '' }: AppVersionProps) => { if (!APP_VERSION) return null return v{APP_VERSION} } export default AppVersion