'use client'; import { useOrderStore } from '@/stores/order'; import { Button } from '@repo/ui/components/ui/button'; import { Card, CardContent } from '@repo/ui/components/ui/card'; import { AlertCircle, CheckCircle2, Home, RefreshCw } from 'lucide-react'; import Link from 'next/link'; export function ErrorPage() { const setStep = useOrderStore((store) => store.setStep); const handleRetry = () => { setStep('datetime-select'); }; return (

Ошибка!

Произошла ошибка при выполнении операции.

); } export function SuccessPage() { return (

Готово!

Запись успешно создана

); }