Files
sfera/src/app/supplies/create-ozon/page.tsx

18 lines
723 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}