canina/frontend/application/components/MaintenancePage.tsx
parsa aghaei 8d1b786a24
All checks were successful
Deploy Canina / deploy (push) Successful in 1m50s
chore(brand): rename all Persian occurrences of کانینا to کنینا across the project
2026-08-16 16:40:08 +03:30

47 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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.

"use client";
import React from "react";
import { Wrench, Phone, ShieldCheck } from "lucide-react";
export default function MaintenancePage() {
return (
<div className="min-h-screen bg-medical-gray-900 text-white flex flex-col items-center justify-center p-6 text-center font-vazir relative overflow-hidden" dir="rtl">
{/* Glow Effects */}
<div className="absolute top-1/4 left-1/2 -translate-x-1/2 -translate-y-1/2 w-96 h-96 bg-canina-blue/20 rounded-full blur-3xl pointer-events-none" />
<div className="absolute bottom-10 right-10 w-80 h-80 bg-canina-gold/10 rounded-full blur-3xl pointer-events-none" />
<div className="relative z-10 max-w-xl mx-auto space-y-6">
<div className="w-24 h-24 bg-white/10 border border-white/20 rounded-3xl mx-auto flex items-center justify-center text-canina-gold shadow-2xl backdrop-blur-md">
<Wrench className="w-12 h-12 animate-bounce" />
</div>
<span className="inline-block px-4 py-1.5 bg-canina-gold/20 text-canina-gold border border-canina-gold/30 rounded-full text-xs font-black tracking-widest uppercase">
سامانه در حال بهروزرسانی و ارتقا
</span>
<h1 className="text-3xl sm:text-5xl font-black tracking-tight leading-tight">
بهزودی با خدمات کاملتر بازمیگردیم
</h1>
<p className="text-sm sm:text-base text-medical-gray-300 leading-relaxed">
وبسایت کنینا ایران جهت ارتقای زیرساختها و ارائه خدمات بهتر به شما سرپرستان و دامپزشکان محترم به صورت موقت در دست بهروزرسانی است. از شکیبایی شما سپاسگزاریم.
</p>
<div className="pt-4 flex flex-col sm:flex-row items-center justify-center gap-4">
<a
href="tel:0218888"
className="w-full sm:w-auto px-6 py-3.5 bg-canina-blue hover:bg-canina-dark text-white font-black text-xs rounded-xl flex items-center justify-center gap-2 shadow-lg transition-all"
>
<Phone className="w-4 h-4" />
<span>پشتیبانی اضطراری: ۰۲۱-۸۸۸۸</span>
</a>
</div>
</div>
<div className="absolute bottom-6 text-xs text-medical-gray-500 font-bold flex items-center gap-2">
<ShieldCheck className="w-4 h-4 text-canina-gold" />
<span>CANINA PHARMA GMBH GERMANY نماینده رسمی ایران</span>
</div>
</div>
);
}