+ {__("Verified")} {new Date(domain.verifiedAt).toLocaleDateString()}
+
+ )}
+
+ {domain.sslStatus === "ACTIVE" ? (
+
+
{__("DNS Configuration")}
+
+ {__("Add these DNS records to your domain to complete verification")}
+
+
+
+ {domain.dnsRecords?.map((record: any, index: number) => (
+
+
+ {record.type}
+ {record.purpose}
+
+
+
+
+
+
+ {record.name}
+
+
+
+
+
+
+
+
+ {record.value}
+
+
+
+
+ {record.ttl && (
+
+ TTL: {record.ttl}
+
+ )}
+
+
+ ))}
+
+
+ {domain.sslStatus === "PENDING" && (
+
+
+ {__("After adding the DNS records, verification will happen automatically. This may take a few minutes to propagate.")}
+
+
+ )}
+
+ )}
+
+