import { jsx, jsxs } from "react/jsx-runtime"; import { C as Card } from "./card-B-gBwpxd.js"; import { u as useLang } from "./use-lang-44ndmTOc.js"; import { c as cn, k as getColorWithOpacity } from "./utils-DLCPGU0v.js"; import { Link, usePage } from "@inertiajs/react"; import { ExternalLink } from "lucide-react"; import { DynamicIcon } from "lucide-react/dynamic"; import { g as getPageSection, S as Section } from "./section-DPFpz4mP.js"; import "react"; import "clsx"; import "tailwind-merge"; import "./dialog-DGP_3dPQ.js"; import "@radix-ui/react-dialog"; import "./chunked-uploader-input-CZfv7yqS.js"; import "./button-CdJZJLGw.js"; import "@radix-ui/react-slot"; import "class-variance-authority"; import "./input-BsvJqbcd.js"; import "axios"; import "sonner"; import "./input-error-D1JIzedA.js"; import "./loading-button-CCIxhJrY.js"; import "./label-0rIIfpX0.js"; import "@radix-ui/react-label"; import "./textarea-Z0d4V-ti.js"; import "./inertia-BtwbgBI3.js"; import "./icon-picker-dialog-Bc1iwzL6.js"; import "./icon-picker-C-E-UbjO.js"; import "./debounce-ZFxqVthq.js"; import "./tooltip-BYKuzaoQ.js"; import "@radix-ui/react-tooltip"; import "./scroll-area-CDdrLubh.js"; import "@radix-ui/react-scroll-area"; import "./table-header-CdEXSV6s.js"; import "./table-BMWNGY4o.js"; import "@tanstack/react-table"; import "./table-page-size-CF314lUl.js"; import "./dropdown-menu-msun3TP8.js"; import "@radix-ui/react-dropdown-menu"; import "./route-DlE7FdTW.js"; import "./avatar-C8iCpF5R.js"; import "@radix-ui/react-avatar"; const CategoryCard1 = ({ category, className, ...props }) => { const { common } = useLang(); return /* @__PURE__ */ jsx(Link, { href: route("category.courses", { category: category.slug }), children: /* @__PURE__ */ jsxs( Card, { className: cn( "hover:!shadow-card min:h-[110px] bg-secondary-lighter border-secondary-light text-secondary-foreground gap-4 rounded-2xl p-5 !shadow-none", className ), ...props, children: [ /* @__PURE__ */ jsx(DynamicIcon, { size: 28, name: category.icon }), /* @__PURE__ */ jsx("p", { className: "text-primary mt-4 mb-8 text-xl font-semibold", children: category.title }), /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-2", children: [ /* @__PURE__ */ jsxs("p", { className: "text-sm", children: [ category.courses_count, " ", common.courses ] }), /* @__PURE__ */ jsx(ExternalLink, { className: "h-4 w-4" }) ] }) ] } ) }); }; const TopCategories = () => { const { props } = usePage(); const { page, customize, topCategories } = props; const topCategoriesSection = getPageSection(page, "top_categories"); const colors = [ "rgba(79,57,246,1)", "rgba(0,122,85,1)", "rgba(255,171,0,1)", "rgba(236,0,63,1)", "rgba(255,171,0,1)" // 'rgba(236,0,63,1)', // 'rgba(79,57,246,1)', // 'rgba(0,122,85,1)', ]; return /* @__PURE__ */ jsxs(Section, { customize, pageSection: topCategoriesSection, containerClass: "z-10 py-20", children: [ /* @__PURE__ */ jsxs("div", { className: "bg-secondary/10 mx-auto mb-10 text-center md:max-w-2xl", children: [ /* @__PURE__ */ jsx("p", { className: "text-secondary-foreground mb-1 font-medium", children: topCategoriesSection == null ? void 0 : topCategoriesSection.title }), /* @__PURE__ */ jsx("h2", { className: "mb-4 text-3xl font-bold sm:text-4xl", children: topCategoriesSection == null ? void 0 : topCategoriesSection.sub_title }), /* @__PURE__ */ jsx("p", { className: "text-muted-foreground", children: topCategoriesSection == null ? void 0 : topCategoriesSection.description }) ] }), /* @__PURE__ */ jsx("div", { className: "grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-4", children: topCategories.map((category, index) => { const colorIndex = index % colors.length; const currentColor = colors[colorIndex]; return /* @__PURE__ */ jsx( CategoryCard1, { category, style: { color: currentColor, borderColor: getColorWithOpacity(currentColor, 0.15), backgroundColor: getColorWithOpacity(currentColor, 0.04) } }, category.id ); }) }) ] }); }; export { TopCategories as default };