Files
AnimeTV-Frontend/features/status/index.tsx
Rafi Arrafif 34eb8d3a8b
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 41s
🚨 fix: resolve linting errors
2026-02-10 20:36:19 +07:00

33 lines
1.0 KiB
TypeScript

"use client";
import Image from "next/image";
import UnderContruction from "@/shared/assets/under-construction.svg";
const StatusIndex = () => {
return (
<div>
<div className="flex flex-col md:flex-row items-center justify-center text-center md:text-left px-4 pt-12 md:pt-22">
<Image
src={UnderContruction}
alt="Under Construction"
draggable={false}
width={240}
/>
<div className="mt-6 md:mt-0 md:ml-6 lg:ml-12 max-w-md">
<h1 className="text-xl font-semibold">
Service is temporarily unavailable
</h1>
<p className="text-sm text-neutral-300 mt-2">
We&apos;re currently experiencing an issue with this service and our
team is working to restore it as quickly as possible. You can still
browse other features while we fix the problem. Please check back in
a few moments. We appreciate your patience.
</p>
</div>
</div>
</div>
);
};
export default StatusIndex;