Initial commit of eigent-main

This commit is contained in:
puzhen 2025-08-12 01:16:39 +02:00
commit 723df5a03e
1144 changed files with 103478 additions and 0 deletions

View file

@ -0,0 +1,17 @@
"use client";
"use client";
// src/components/elements/separator-with-text.tsx
import { Separator } from "@stackframe/stack-ui";
import { jsx, jsxs } from "react/jsx-runtime";
function SeparatorWithText({ text }) {
return /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center my-6 stack-scope", children: [
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(Separator, {}) }),
/* @__PURE__ */ jsx("div", { className: "mx-2 text-sm text-zinc-500", children: text }),
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(Separator, {}) })
] });
}
export {
SeparatorWithText
};
//# sourceMappingURL=separator-with-text.js.map