diff --git a/client/src/pages/Metaset.tsx b/client/src/pages/Metaset.tsx
new file mode 100644
index 0000000..9493454
--- /dev/null
+++ b/client/src/pages/Metaset.tsx
@@ -0,0 +1,77 @@
+import { useState } from "react";
+import { Loader2, AlertCircle, ExternalLink } from "lucide-react";
+import { Button } from "@/components/ui/button";
+import { Alert, AlertDescription } from "@/components/ui/alert";
+
+export default function Metaset() {
+ const [isLoading, setIsLoading] = useState(true);
+ const [hasError, setHasError] = useState(false);
+
+ return (
+
+ {/* Header do módulo */}
+
+
+ {/* Container do iframe */}
+
+ {isLoading && (
+
+
+
+ Carregando Metaset...
+
+
+ )}
+
+ {hasError ? (
+
+
+
+
+ Não foi possível carregar o Metaset. O site pode não permitir embed em iframe.
+
+
+
+
+ ) : (
+
+
+ );
+}