diff --git a/src/pages/ServiceWorkerError.tsx b/src/pages/ServiceWorkerError.tsx
index bd5f02b..6e1bacf 100644
--- a/src/pages/ServiceWorkerError.tsx
+++ b/src/pages/ServiceWorkerError.tsx
@@ -1,18 +1,30 @@
import { Button } from "@/components/ui/button";
+import { Card, CardContent, CardTitle } from "@/components/ui/card";
+import { ShieldX } from "lucide-react";
+
export default function PageNotFound() {
- return (
-
-
- Service Worker Error. Click below to refresh the page. If this page
- reappears, your browser does not support Service Workers.
-
-
-
- );
+ return (
+
+
+
+
+
+ Service Worker Error
+
+
+ Click below to refresh the page. If this page reappears, your browser does not support Service Workers.
+
+
+
+
+
+
+
+ );
}