transcriptor-web/bootstrap/ssr/assets/PrivacyPolicy-DYEevN3b.js
2025-04-05 15:58:14 +02:00

22 lines
1.0 KiB
JavaScript

import { jsxs, jsx } from "react/jsx-runtime";
import { A as AuthenticationCardLogo } from "./AuthenticationCardLogo-CZgVhhfE.js";
import { Head } from "@inertiajs/react";
function PrivacyPolicy({ policy }) {
return /* @__PURE__ */ jsxs("div", { children: [
/* @__PURE__ */ jsx(Head, { title: "Privacy Policy" }),
/* @__PURE__ */ jsx("div", { className: "font-sans text-gray-900 dark:text-gray-100 antialiased", children: /* @__PURE__ */ jsx("div", { className: "pt-4 bg-gray-100 dark:bg-gray-900", children: /* @__PURE__ */ jsxs("div", { className: "min-h-screen flex flex-col items-center pt-6 sm:pt-0", children: [
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(AuthenticationCardLogo, {}) }),
/* @__PURE__ */ jsx(
"div",
{
className: "w-full sm:max-w-2xl mt-6 p-6 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg prose dark:prose-invert",
dangerouslySetInnerHTML: { __html: policy }
}
)
] }) }) })
] });
}
export {
PrivacyPolicy as default
};