11 lines
520 B
JavaScript
11 lines
520 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
|
|
function SectionTitle({ title, description }) {
|
|
return /* @__PURE__ */ jsx("div", { className: "md:col-span-1", children: /* @__PURE__ */ jsxs("div", { className: "px-4 sm:px-0", children: [
|
|
/* @__PURE__ */ jsx("h3", { className: "text-lg font-medium text-gray-900 dark:text-gray-100", children: title }),
|
|
/* @__PURE__ */ jsx("p", { className: "mt-1 text-sm text-gray-600 dark:text-gray-400", children: description })
|
|
] }) });
|
|
}
|
|
export {
|
|
SectionTitle as S
|
|
};
|