22 lines
1016 B
JavaScript
22 lines
1016 B
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
|
|
import { A as AuthenticationCardLogo } from "./AuthenticationCardLogo-CZgVhhfE.js";
|
|
import { Head } from "@inertiajs/react";
|
|
function TermsOfService({ terms }) {
|
|
return /* @__PURE__ */ jsxs("div", { className: "font-sans text-gray-900 dark:text-gray-100 antialiased", children: [
|
|
/* @__PURE__ */ jsx(Head, { title: "Terms of Service" }),
|
|
/* @__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: terms }
|
|
}
|
|
)
|
|
] }) })
|
|
] });
|
|
}
|
|
export {
|
|
TermsOfService as default
|
|
};
|