18 lines
723 B
TypeScript
18 lines
723 B
TypeScript
import { AuthGuard } from "@/components/auth-guard";
|
||
|
||
export default function CreateOzonSupplyPageRoute() {
|
||
return (
|
||
<AuthGuard>
|
||
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-purple-900 via-blue-900 to-indigo-900">
|
||
<div className="text-center text-white">
|
||
<h1 className="text-3xl font-bold mb-4">Создание поставки на Ozon</h1>
|
||
<p className="text-white/70 mb-6">
|
||
Прямые поставки товаров на маркетплейс Ozon
|
||
</p>
|
||
<p className="text-sm text-white/50">Раздел находится в разработке</p>
|
||
</div>
|
||
</div>
|
||
</AuthGuard>
|
||
);
|
||
}
|