Добавлены модели и функциональность для управления логистикой, включая создание, обновление и удаление логистических маршрутов через GraphQL. Обновлены компоненты для отображения и управления логистикой, улучшен интерфейс взаимодействия с пользователем. Реализованы новые типы данных и интерфейсы для логистики, а также улучшена обработка ошибок.

This commit is contained in:
Bivekich
2025-07-18 15:40:12 +03:00
parent 7e7e4a9b4a
commit 93bb5827d2
20 changed files with 5015 additions and 667 deletions

View File

@ -0,0 +1,782 @@
"use client"
import React, { useState } from 'react'
import { Card } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
import { Badge } from '@/components/ui/badge'
import { Input } from '@/components/ui/input'
import { Sidebar } from '@/components/dashboard/sidebar'
import {
ArrowLeft,
ShoppingCart,
Users,
Building2,
MapPin,
Phone,
Mail,
Star,
Plus,
Minus,
Info,
Package,
Zap,
Heart,
Eye,
ShoppingBag
} from 'lucide-react'
import { useRouter } from 'next/navigation'
import Image from 'next/image'
interface WholesalerForCreation {
id: string
inn: string
name: string
fullName: string
address: string
phone?: string
email?: string
rating: number
productCount: number
avatar?: string
specialization: string[]
}
interface WholesalerProduct {
id: string
name: string
article: string
description: string
price: number
quantity: number
category: string
brand?: string
color?: string
size?: string
weight?: number
dimensions?: string
material?: string
images: string[]
mainImage?: string
discount?: number
isNew?: boolean
isBestseller?: boolean
}
interface SelectedProduct extends WholesalerProduct {
selectedQuantity: number
}
// Моковые данные оптовиков
const mockWholesalers: WholesalerForCreation[] = [
{
id: '1',
inn: '7707083893',
name: 'ОПТ-Электроника',
fullName: 'ООО "ОПТ-Электроника"',
address: 'г. Москва, ул. Садовая, д. 15',
phone: '+7 (495) 123-45-67',
email: 'opt@electronics.ru',
rating: 4.8,
productCount: 1250,
specialization: ['Электроника', 'Бытовая техника']
},
{
id: '2',
inn: '7707083894',
name: 'ТекстильМастер',
fullName: 'ООО "ТекстильМастер"',
address: 'г. Иваново, пр. Ленина, д. 42',
phone: '+7 (4932) 55-66-77',
email: 'sales@textilmaster.ru',
rating: 4.6,
productCount: 850,
specialization: ['Текстиль', 'Одежда', 'Домашний текстиль']
},
{
id: '3',
inn: '7707083895',
name: 'МетизКомплект',
fullName: 'ООО "МетизКомплект"',
address: 'г. Тула, ул. Металлургов, д. 8',
phone: '+7 (4872) 33-44-55',
email: 'info@metiz.ru',
rating: 4.9,
productCount: 2100,
specialization: ['Крепеж', 'Метизы', 'Инструменты']
}
]
// Улучшенные моковые данные товаров
const mockProducts: WholesalerProduct[] = [
{
id: '1',
name: 'iPhone 15 Pro Max',
article: 'APL-15PM-256',
description: 'Флагманский смартфон Apple с титановым корпусом, камерой 48 МП и чипом A17 Pro',
price: 124900,
quantity: 45,
category: 'Смартфоны',
brand: 'Apple',
color: 'Натуральный титан',
size: '6.7"',
weight: 221,
dimensions: '159.9 x 76.7 x 8.25 мм',
material: 'Титан, стекло',
images: ['https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/iphone-15-pro-max-naturaltitanium-select?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1692845705224'],
mainImage: 'https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/iphone-15-pro-max-naturaltitanium-select?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1692845705224',
isNew: true,
isBestseller: true
},
{
id: '2',
name: 'Sony WH-1000XM5',
article: 'SNY-WH1000XM5',
description: 'Беспроводные наушники премиум-класса с лучшим в отрасли шумоподавлением',
price: 34900,
quantity: 128,
category: 'Наушники',
brand: 'Sony',
color: 'Черный',
weight: 250,
material: 'Пластик, эко-кожа',
images: ['https://www.sony.ru/image/5d02da5df552836db894cead8a68f5f3?fmt=pjpeg&wid=330&bgcolor=FFFFFF&bgc=FFFFFF'],
mainImage: 'https://www.sony.ru/image/5d02da5df552836db894cead8a68f5f3?fmt=pjpeg&wid=330&bgcolor=FFFFFF&bgc=FFFFFF',
discount: 15,
isBestseller: true
},
{
id: '3',
name: 'iPad Pro 12.9" M2',
article: 'APL-IPADPRO-M2',
description: 'Самый мощный iPad с чипом M2, дисплеем Liquid Retina XDR и поддержкой Apple Pencil',
price: 109900,
quantity: 32,
category: 'Планшеты',
brand: 'Apple',
color: 'Серый космос',
size: '12.9"',
weight: 682,
dimensions: '280.6 x 214.9 x 6.4 мм',
material: 'Алюминий',
images: ['https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/ipad-pro-12-select-wifi-spacegray-202210?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1664411207213'],
mainImage: 'https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/ipad-pro-12-select-wifi-spacegray-202210?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1664411207213',
isNew: true
},
{
id: '4',
name: 'MacBook Pro 16" M3 Max',
article: 'APL-MBP16-M3MAX',
description: 'Профессиональный ноутбук с чипом M3 Max, 36 ГБ памяти и дисплеем Liquid Retina XDR',
price: 329900,
quantity: 18,
category: 'Ноутбуки',
brand: 'Apple',
color: 'Серый космос',
size: '16"',
weight: 2160,
dimensions: '355.7 x 248.1 x 16.8 мм',
material: 'Алюминий',
images: ['https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/mbp16-spacegray-select-202310?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1697230830200'],
mainImage: 'https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/mbp16-spacegray-select-202310?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1697230830200',
isNew: true,
isBestseller: true
},
{
id: '5',
name: 'Apple Watch Ultra 2',
article: 'APL-AWU2-49',
description: 'Самые прочные и функциональные умные часы Apple для экстремальных приключений',
price: 89900,
quantity: 67,
category: 'Умные часы',
brand: 'Apple',
color: 'Натуральный титан',
size: '49 мм',
weight: 61,
dimensions: '49 x 44 x 14.4 мм',
material: 'Титан',
images: ['https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/watch-ultra2-select-202309?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1693967875133'],
mainImage: 'https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/watch-ultra2-select-202309?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1693967875133',
isNew: true
},
{
id: '6',
name: 'Magic Keyboard для iPad Pro',
article: 'APL-MK-IPADPRO',
description: 'Клавиатура с трекпадом и подсветкой клавиш для iPad Pro 12.9"',
price: 36900,
quantity: 89,
category: 'Аксессуары',
brand: 'Apple',
color: 'Черный',
weight: 710,
dimensions: '280.9 x 214.3 x 25 мм',
material: 'Алюминий, пластик',
images: ['https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/MJQJ3?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1639066901000'],
mainImage: 'https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/MJQJ3?wid=470&hei=556&fmt=jpeg&qlt=99&.v=1639066901000'
}
]
export function CreateSupplyPage() {
const router = useRouter()
const [selectedVariant, setSelectedVariant] = useState<'cards' | 'wholesaler' | null>(null)
const [selectedWholesaler, setSelectedWholesaler] = useState<WholesalerForCreation | null>(null)
const [selectedProducts, setSelectedProducts] = useState<SelectedProduct[]>([])
const [showSummary, setShowSummary] = useState(false)
const formatCurrency = (amount: number) => {
return new Intl.NumberFormat('ru-RU', {
style: 'currency',
currency: 'RUB',
minimumFractionDigits: 0
}).format(amount)
}
const renderStars = (rating: number) => {
return Array.from({ length: 5 }, (_, i) => (
<Star
key={i}
className={`h-4 w-4 ${i < Math.floor(rating) ? 'text-yellow-400 fill-current' : 'text-gray-400'}`}
/>
))
}
const updateProductQuantity = (productId: string, quantity: number) => {
const product = mockProducts.find(p => p.id === productId)
if (!product) return
setSelectedProducts(prev => {
const existing = prev.find(p => p.id === productId)
if (quantity === 0) {
return prev.filter(p => p.id !== productId)
}
if (existing) {
return prev.map(p =>
p.id === productId ? { ...p, selectedQuantity: quantity } : p
)
} else {
return [...prev, { ...product, selectedQuantity: quantity }]
}
})
}
const getSelectedQuantity = (productId: string): number => {
const selected = selectedProducts.find(p => p.id === productId)
return selected ? selected.selectedQuantity : 0
}
const getTotalAmount = () => {
return selectedProducts.reduce((sum, product) => {
const discountedPrice = product.discount
? product.price * (1 - product.discount / 100)
: product.price
return sum + (discountedPrice * product.selectedQuantity)
}, 0)
}
const getTotalItems = () => {
return selectedProducts.reduce((sum, product) => sum + product.selectedQuantity, 0)
}
const handleCreateSupply = () => {
console.log('Создание поставки с товарами:', selectedProducts)
// TODO: Здесь будет реальное создание поставки
router.push('/supplies')
}
const handleGoBack = () => {
if (selectedWholesaler) {
setSelectedWholesaler(null)
setSelectedProducts([])
setShowSummary(false)
} else if (selectedVariant) {
setSelectedVariant(null)
} else {
router.push('/supplies')
}
}
// Рендер товаров оптовика
if (selectedWholesaler && selectedVariant === 'wholesaler') {
return (
<div className="min-h-screen bg-gradient-smooth flex">
<Sidebar />
<main className="flex-1 ml-56">
<div className="p-8">
<div className="flex items-center justify-between mb-8">
<div className="flex items-center space-x-4">
<Button
variant="ghost"
size="sm"
onClick={handleGoBack}
className="text-white/60 hover:text-white hover:bg-white/10"
>
<ArrowLeft className="h-4 w-4 mr-2" />
Назад
</Button>
<div>
<h1 className="text-3xl font-bold text-white mb-2">Товары оптовика</h1>
<p className="text-white/60">{selectedWholesaler.name} {mockProducts.length} товаров</p>
</div>
</div>
<div className="flex items-center space-x-3">
<Button
variant="ghost"
size="sm"
onClick={() => setShowSummary(!showSummary)}
className="text-white/60 hover:text-white hover:bg-white/10"
>
<Info className="h-4 w-4 mr-2" />
Резюме ({selectedProducts.length})
</Button>
</div>
</div>
{showSummary && selectedProducts.length > 0 && (
<Card className="bg-gradient-to-r from-purple-500/10 to-pink-500/10 backdrop-blur border-purple-500/30 p-8 mb-8">
<div className="flex items-center justify-between mb-6">
<h3 className="text-white font-semibold text-xl flex items-center">
<ShoppingBag className="h-5 w-5 mr-2" />
Резюме заказа
</h3>
<Badge className="bg-purple-500/20 text-purple-300 border-purple-500/30">
{selectedProducts.length} товаров
</Badge>
</div>
<div className="space-y-4">
{selectedProducts.map((product) => {
const discountedPrice = product.discount
? product.price * (1 - product.discount / 100)
: product.price
return (
<div key={product.id} className="flex justify-between items-center bg-white/5 rounded-lg p-4">
<div className="flex items-center space-x-4">
<img
src={product.mainImage || '/api/placeholder/60/60'}
alt={product.name}
className="w-12 h-12 rounded-lg object-cover"
/>
<div>
<span className="text-white font-medium">{product.name}</span>
<div className="flex items-center space-x-2 mt-1">
<span className="text-white/60 text-sm">× {product.selectedQuantity}</span>
{product.discount && (
<Badge className="bg-red-500/20 text-red-300 border-red-500/30 text-xs">
-{product.discount}%
</Badge>
)}
</div>
</div>
</div>
<div className="text-right">
<span className="text-white font-bold">
{formatCurrency(discountedPrice * product.selectedQuantity)}
</span>
{product.discount && (
<div className="text-white/40 text-sm line-through">
{formatCurrency(product.price * product.selectedQuantity)}
</div>
)}
</div>
</div>
)
})}
<div className="border-t border-white/20 pt-6 flex justify-between items-center">
<span className="text-white font-semibold text-lg">
Итого: {getTotalItems()} товаров
</span>
<span className="text-white font-bold text-2xl">
{formatCurrency(getTotalAmount())}
</span>
</div>
<Button
className="w-full bg-gradient-to-r from-green-500 to-emerald-500 hover:from-green-600 hover:to-emerald-600 text-white text-lg py-6"
onClick={handleCreateSupply}
disabled={selectedProducts.length === 0}
>
<ShoppingCart className="h-5 w-5 mr-2" />
Создать поставку
</Button>
</div>
</Card>
)}
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
{mockProducts.map((product) => {
const selectedQuantity = getSelectedQuantity(product.id)
const discountedPrice = product.discount
? product.price * (1 - product.discount / 100)
: product.price
return (
<Card key={product.id} className="bg-white/10 backdrop-blur border-white/20 overflow-hidden group hover:bg-white/15 hover:border-white/30 transition-all duration-300 hover:scale-105 hover:shadow-2xl">
<div className="aspect-square relative bg-white/5 overflow-hidden">
<img
src={product.mainImage || '/api/placeholder/400/400'}
alt={product.name}
className="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500"
/>
{/* Badges в верхних углах */}
<div className="absolute top-3 left-3 flex flex-col space-y-2">
{product.isNew && (
<Badge className="bg-blue-500 text-white border-0 font-medium">
<Zap className="h-3 w-3 mr-1" />
NEW
</Badge>
)}
{product.isBestseller && (
<Badge className="bg-orange-500 text-white border-0 font-medium">
<Star className="h-3 w-3 mr-1" />
ХИТ
</Badge>
)}
{product.discount && (
<Badge className="bg-red-500 text-white border-0 font-bold">
-{product.discount}%
</Badge>
)}
</div>
{/* Количество в наличии */}
<div className="absolute top-3 right-3">
<Badge className={`${product.quantity > 50 ? 'bg-green-500/80' : product.quantity > 10 ? 'bg-yellow-500/80' : 'bg-red-500/80'} text-white border-0 backdrop-blur`}>
{product.quantity} шт
</Badge>
</div>
{/* Overlay с кнопками */}
<div className="absolute inset-0 bg-black/40 opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-center justify-center">
<div className="flex space-x-2">
<Button size="sm" variant="secondary" className="bg-white/20 backdrop-blur text-white border-white/30 hover:bg-white/30">
<Eye className="h-4 w-4" />
</Button>
<Button size="sm" variant="secondary" className="bg-white/20 backdrop-blur text-white border-white/30 hover:bg-white/30">
<Heart className="h-4 w-4" />
</Button>
</div>
</div>
</div>
<div className="p-5 space-y-4">
{/* Заголовок и бренд */}
<div>
<div className="flex items-center justify-between mb-2">
{product.brand && (
<Badge className="bg-gray-500/20 text-gray-300 border-gray-500/30 text-xs">
{product.brand}
</Badge>
)}
<Badge className="bg-blue-500/20 text-blue-300 border-blue-500/30 text-xs">
{product.category}
</Badge>
</div>
<h3 className="text-white font-semibold text-lg mb-1 line-clamp-2 leading-tight">
{product.name}
</h3>
<p className="text-white/60 text-xs mb-2">
Артикул: {product.article}
</p>
</div>
{/* Описание */}
<p className="text-white/70 text-sm line-clamp-2 leading-relaxed">
{product.description}
</p>
{/* Характеристики */}
<div className="space-y-2">
{product.color && (
<div className="text-white/60 text-xs flex items-center">
<div className="w-3 h-3 rounded-full bg-gray-400 mr-2"></div>
Цвет: <span className="text-white ml-1">{product.color}</span>
</div>
)}
{product.size && (
<div className="text-white/60 text-xs">
Размер: <span className="text-white">{product.size}</span>
</div>
)}
{product.weight && (
<div className="text-white/60 text-xs">
Вес: <span className="text-white">{product.weight} г</span>
</div>
)}
</div>
{/* Цена */}
<div className="flex items-center justify-between pt-3 border-t border-white/10">
<div>
<div className="flex items-center space-x-2">
<div className="text-white font-bold text-xl">
{formatCurrency(discountedPrice)}
</div>
{product.discount && (
<div className="text-white/40 text-sm line-through">
{formatCurrency(product.price)}
</div>
)}
</div>
<div className="text-white/60 text-xs">за штуку</div>
</div>
</div>
{/* Управление количеством */}
<div className="flex items-center justify-between space-x-3">
<div className="flex items-center space-x-2 flex-1">
<Button
variant="ghost"
size="sm"
onClick={() => updateProductQuantity(product.id, Math.max(0, selectedQuantity - 1))}
disabled={selectedQuantity === 0}
className="h-9 w-9 p-0 text-white/60 hover:text-white hover:bg-white/10 border border-white/20"
>
<Minus className="h-4 w-4" />
</Button>
<Input
type="number"
value={selectedQuantity}
onChange={(e) => {
const value = Math.max(0, Math.min(product.quantity, parseInt(e.target.value) || 0))
updateProductQuantity(product.id, value)
}}
className="h-9 w-16 text-center bg-white/10 border-white/20 text-white text-sm"
min={0}
max={product.quantity}
/>
<Button
variant="ghost"
size="sm"
onClick={() => updateProductQuantity(product.id, Math.min(product.quantity, selectedQuantity + 1))}
disabled={selectedQuantity >= product.quantity}
className="h-9 w-9 p-0 text-white/60 hover:text-white hover:bg-white/10 border border-white/20"
>
<Plus className="h-4 w-4" />
</Button>
</div>
{selectedQuantity > 0 && (
<Button
size="sm"
className="bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600 text-white flex-shrink-0"
>
<ShoppingCart className="h-4 w-4 mr-1" />
{selectedQuantity}
</Button>
)}
</div>
{/* Сумма для выбранного товара */}
{selectedQuantity > 0 && (
<div className="bg-gradient-to-r from-green-500/20 to-emerald-500/20 border border-green-500/30 rounded-lg p-3">
<div className="text-green-300 text-sm font-medium text-center">
Сумма: {formatCurrency(discountedPrice * selectedQuantity)}
{product.discount && (
<span className="text-green-200 text-xs ml-2">
(экономия {formatCurrency((product.price - discountedPrice) * selectedQuantity)})
</span>
)}
</div>
</div>
)}
</div>
</Card>
)
})}
</div>
{/* Floating корзина */}
{selectedProducts.length > 0 && (
<div className="fixed bottom-6 right-6 z-50">
<Button
size="lg"
className="bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600 text-white shadow-2xl text-lg px-8 py-4"
onClick={() => setShowSummary(!showSummary)}
>
<ShoppingCart className="h-5 w-5 mr-3" />
Корзина ({selectedProducts.length}) {formatCurrency(getTotalAmount())}
</Button>
</div>
)}
</div>
</main>
</div>
)
}
// Рендер выбора оптовиков
if (selectedVariant === 'wholesaler') {
return (
<div className="min-h-screen bg-gradient-smooth flex">
<Sidebar />
<main className="flex-1 ml-56">
<div className="p-8">
<div className="flex items-center justify-between mb-8">
<div className="flex items-center space-x-4">
<Button
variant="ghost"
size="sm"
onClick={handleGoBack}
className="text-white/60 hover:text-white hover:bg-white/10"
>
<ArrowLeft className="h-4 w-4 mr-2" />
Назад
</Button>
<div>
<h1 className="text-3xl font-bold text-white mb-2">Выбор оптовика</h1>
<p className="text-white/60">Выберите оптовика для создания поставки</p>
</div>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{mockWholesalers.map((wholesaler) => (
<Card
key={wholesaler.id}
className="bg-white/10 backdrop-blur border-white/20 p-6 cursor-pointer transition-all hover:bg-white/15 hover:border-white/30 hover:scale-105"
onClick={() => setSelectedWholesaler(wholesaler)}
>
<div className="space-y-4">
<div className="flex items-start space-x-3">
<div className="p-3 bg-blue-500/20 rounded-lg">
<Building2 className="h-6 w-6 text-blue-400" />
</div>
<div className="flex-1 min-w-0">
<h3 className="text-white font-semibold text-lg mb-1 truncate">
{wholesaler.name}
</h3>
<p className="text-white/60 text-xs mb-2 truncate">
{wholesaler.fullName}
</p>
<div className="flex items-center space-x-1 mb-2">
{renderStars(wholesaler.rating)}
<span className="text-white/60 text-sm ml-2">{wholesaler.rating}</span>
</div>
</div>
</div>
<div className="space-y-2">
<div className="flex items-center space-x-2">
<MapPin className="h-4 w-4 text-gray-400" />
<span className="text-white/80 text-sm truncate">{wholesaler.address}</span>
</div>
{wholesaler.phone && (
<div className="flex items-center space-x-2">
<Phone className="h-4 w-4 text-gray-400" />
<span className="text-white/80 text-sm">{wholesaler.phone}</span>
</div>
)}
{wholesaler.email && (
<div className="flex items-center space-x-2">
<Mail className="h-4 w-4 text-gray-400" />
<span className="text-white/80 text-sm truncate">{wholesaler.email}</span>
</div>
)}
<div className="flex items-center space-x-2">
<Package className="h-4 w-4 text-gray-400" />
<span className="text-white/80 text-sm">{wholesaler.productCount} товаров</span>
</div>
</div>
<div className="space-y-2">
<p className="text-white/60 text-xs">Специализация:</p>
<div className="flex flex-wrap gap-1">
{wholesaler.specialization.map((spec, index) => (
<Badge
key={index}
className="bg-purple-500/20 text-purple-300 border-purple-500/30 text-xs"
>
{spec}
</Badge>
))}
</div>
</div>
<div className="pt-2 border-t border-white/10">
<p className="text-white/60 text-xs">ИНН: {wholesaler.inn}</p>
</div>
</div>
</Card>
))}
</div>
</div>
</main>
</div>
)
}
// Главная страница выбора варианта
return (
<div className="min-h-screen bg-gradient-smooth flex">
<Sidebar />
<main className="flex-1 ml-56">
<div className="p-8">
<div className="flex items-center justify-between mb-8">
<div className="flex items-center space-x-4">
<Button
variant="ghost"
size="sm"
onClick={() => router.push('/supplies')}
className="text-white/60 hover:text-white hover:bg-white/10"
>
<ArrowLeft className="h-4 w-4 mr-2" />
Назад к поставкам
</Button>
<div>
<h1 className="text-3xl font-bold text-white mb-2">Создание поставки</h1>
<p className="text-white/60">Выберите способ создания поставки</p>
</div>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
<Card
className="bg-white/10 backdrop-blur border-white/20 p-8 cursor-pointer transition-all hover:bg-white/15 hover:border-white/30 hover:scale-105"
onClick={() => setSelectedVariant('cards')}
>
<div className="text-center space-y-6">
<div className="p-6 bg-blue-500/20 rounded-2xl w-fit mx-auto">
<ShoppingCart className="h-12 w-12 text-blue-400" />
</div>
<div>
<h3 className="text-2xl font-semibold text-white mb-3">Карточки</h3>
<p className="text-white/60">
Создание поставки через выбор товаров по карточкам
</p>
</div>
<Badge className="bg-yellow-500/20 text-yellow-300 border-yellow-500/30 text-lg px-4 py-2">
В разработке
</Badge>
</div>
</Card>
<Card
className="bg-white/10 backdrop-blur border-white/20 p-8 cursor-pointer transition-all hover:bg-white/15 hover:border-white/30 hover:scale-105"
onClick={() => setSelectedVariant('wholesaler')}
>
<div className="text-center space-y-6">
<div className="p-6 bg-green-500/20 rounded-2xl w-fit mx-auto">
<Users className="h-12 w-12 text-green-400" />
</div>
<div>
<h3 className="text-2xl font-semibold text-white mb-3">Оптовик</h3>
<p className="text-white/60">
Создание поставки через выбор товаров у оптовиков
</p>
</div>
<Badge className="bg-green-500/20 text-green-300 border-green-500/30 text-lg px-4 py-2">
Доступно
</Badge>
</div>
</Card>
</div>
</div>
</main>
</div>
)
}