virtual-ui-lib 1.0.60 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +56 -0
- package/dist/index.mjs +55 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(index_exports, {
|
|
|
35
35
|
CustomInputField: () => CustomInputField,
|
|
36
36
|
DividerLine: () => DividerLine,
|
|
37
37
|
FileUpload: () => FileUpload,
|
|
38
|
+
Footer: () => Footer,
|
|
38
39
|
Loader: () => Loader,
|
|
39
40
|
LoadingSpinner: () => LoadingSpinner,
|
|
40
41
|
Navbar: () => Navbar,
|
|
@@ -1365,6 +1366,60 @@ var Navbar = ({
|
|
|
1365
1366
|
ctaText
|
|
1366
1367
|
))));
|
|
1367
1368
|
};
|
|
1369
|
+
|
|
1370
|
+
// src/components/Footer/Footer.jsx
|
|
1371
|
+
var import_react21 = __toESM(require("react"));
|
|
1372
|
+
var Footer = ({
|
|
1373
|
+
logo = "VirtualAI",
|
|
1374
|
+
links = ["Home", "Features", "Pricing", "Blog", "Contact"],
|
|
1375
|
+
copyright = "VirtualAI",
|
|
1376
|
+
accent = "#6366f1",
|
|
1377
|
+
bg = "#0f172a"
|
|
1378
|
+
}) => {
|
|
1379
|
+
return /* @__PURE__ */ import_react21.default.createElement("footer", { style: {
|
|
1380
|
+
background: bg,
|
|
1381
|
+
borderTop: "1px solid rgba(255,255,255,0.06)",
|
|
1382
|
+
fontFamily: "system-ui, sans-serif",
|
|
1383
|
+
width: "100%",
|
|
1384
|
+
boxSizing: "border-box",
|
|
1385
|
+
padding: "28px 24px"
|
|
1386
|
+
} }, /* @__PURE__ */ import_react21.default.createElement("div", { style: {
|
|
1387
|
+
maxWidth: "900px",
|
|
1388
|
+
margin: "0 auto",
|
|
1389
|
+
display: "flex",
|
|
1390
|
+
flexDirection: "column",
|
|
1391
|
+
alignItems: "center",
|
|
1392
|
+
gap: "20px"
|
|
1393
|
+
} }, /* @__PURE__ */ import_react21.default.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px" } }, /* @__PURE__ */ import_react21.default.createElement("div", { style: {
|
|
1394
|
+
width: "26px",
|
|
1395
|
+
height: "26px",
|
|
1396
|
+
borderRadius: "7px",
|
|
1397
|
+
background: `linear-gradient(135deg, ${accent}, rgba(99,102,241,0.5))`,
|
|
1398
|
+
display: "flex",
|
|
1399
|
+
alignItems: "center",
|
|
1400
|
+
justifyContent: "center",
|
|
1401
|
+
fontSize: "12px",
|
|
1402
|
+
fontWeight: "800",
|
|
1403
|
+
color: "#fff"
|
|
1404
|
+
} }, logo[0]), /* @__PURE__ */ import_react21.default.createElement("span", { style: { fontSize: "15px", fontWeight: "800", color: "#fff" } }, logo)), /* @__PURE__ */ import_react21.default.createElement("div", { style: { display: "flex", flexWrap: "wrap", justifyContent: "center", gap: "4px" } }, links.map((link) => /* @__PURE__ */ import_react21.default.createElement(
|
|
1405
|
+
"a",
|
|
1406
|
+
{
|
|
1407
|
+
key: link,
|
|
1408
|
+
href: "#",
|
|
1409
|
+
style: {
|
|
1410
|
+
fontSize: "13px",
|
|
1411
|
+
color: "rgba(255,255,255,0.4)",
|
|
1412
|
+
textDecoration: "none",
|
|
1413
|
+
padding: "4px 12px",
|
|
1414
|
+
borderRadius: "8px",
|
|
1415
|
+
transition: "color 0.2s"
|
|
1416
|
+
},
|
|
1417
|
+
onMouseEnter: (e) => e.currentTarget.style.color = "rgba(255,255,255,0.85)",
|
|
1418
|
+
onMouseLeave: (e) => e.currentTarget.style.color = "rgba(255,255,255,0.4)"
|
|
1419
|
+
},
|
|
1420
|
+
link
|
|
1421
|
+
))), /* @__PURE__ */ import_react21.default.createElement("div", { style: { width: "100%", height: "1px", background: "rgba(255,255,255,0.06)" } }), /* @__PURE__ */ import_react21.default.createElement("p", { style: { fontSize: "12px", color: "rgba(255,255,255,0.22)", margin: 0 } }, "\xA9 ", (/* @__PURE__ */ new Date()).getFullYear(), " ", copyright, ". All rights reserved.")));
|
|
1422
|
+
};
|
|
1368
1423
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1369
1424
|
0 && (module.exports = {
|
|
1370
1425
|
Avatar,
|
|
@@ -1373,6 +1428,7 @@ var Navbar = ({
|
|
|
1373
1428
|
CustomInputField,
|
|
1374
1429
|
DividerLine,
|
|
1375
1430
|
FileUpload,
|
|
1431
|
+
Footer,
|
|
1376
1432
|
Loader,
|
|
1377
1433
|
LoadingSpinner,
|
|
1378
1434
|
Navbar,
|
package/dist/index.mjs
CHANGED
|
@@ -1311,6 +1311,60 @@ var Navbar = ({
|
|
|
1311
1311
|
ctaText
|
|
1312
1312
|
))));
|
|
1313
1313
|
};
|
|
1314
|
+
|
|
1315
|
+
// src/components/Footer/Footer.jsx
|
|
1316
|
+
import React21 from "react";
|
|
1317
|
+
var Footer = ({
|
|
1318
|
+
logo = "VirtualAI",
|
|
1319
|
+
links = ["Home", "Features", "Pricing", "Blog", "Contact"],
|
|
1320
|
+
copyright = "VirtualAI",
|
|
1321
|
+
accent = "#6366f1",
|
|
1322
|
+
bg = "#0f172a"
|
|
1323
|
+
}) => {
|
|
1324
|
+
return /* @__PURE__ */ React21.createElement("footer", { style: {
|
|
1325
|
+
background: bg,
|
|
1326
|
+
borderTop: "1px solid rgba(255,255,255,0.06)",
|
|
1327
|
+
fontFamily: "system-ui, sans-serif",
|
|
1328
|
+
width: "100%",
|
|
1329
|
+
boxSizing: "border-box",
|
|
1330
|
+
padding: "28px 24px"
|
|
1331
|
+
} }, /* @__PURE__ */ React21.createElement("div", { style: {
|
|
1332
|
+
maxWidth: "900px",
|
|
1333
|
+
margin: "0 auto",
|
|
1334
|
+
display: "flex",
|
|
1335
|
+
flexDirection: "column",
|
|
1336
|
+
alignItems: "center",
|
|
1337
|
+
gap: "20px"
|
|
1338
|
+
} }, /* @__PURE__ */ React21.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px" } }, /* @__PURE__ */ React21.createElement("div", { style: {
|
|
1339
|
+
width: "26px",
|
|
1340
|
+
height: "26px",
|
|
1341
|
+
borderRadius: "7px",
|
|
1342
|
+
background: `linear-gradient(135deg, ${accent}, rgba(99,102,241,0.5))`,
|
|
1343
|
+
display: "flex",
|
|
1344
|
+
alignItems: "center",
|
|
1345
|
+
justifyContent: "center",
|
|
1346
|
+
fontSize: "12px",
|
|
1347
|
+
fontWeight: "800",
|
|
1348
|
+
color: "#fff"
|
|
1349
|
+
} }, logo[0]), /* @__PURE__ */ React21.createElement("span", { style: { fontSize: "15px", fontWeight: "800", color: "#fff" } }, logo)), /* @__PURE__ */ React21.createElement("div", { style: { display: "flex", flexWrap: "wrap", justifyContent: "center", gap: "4px" } }, links.map((link) => /* @__PURE__ */ React21.createElement(
|
|
1350
|
+
"a",
|
|
1351
|
+
{
|
|
1352
|
+
key: link,
|
|
1353
|
+
href: "#",
|
|
1354
|
+
style: {
|
|
1355
|
+
fontSize: "13px",
|
|
1356
|
+
color: "rgba(255,255,255,0.4)",
|
|
1357
|
+
textDecoration: "none",
|
|
1358
|
+
padding: "4px 12px",
|
|
1359
|
+
borderRadius: "8px",
|
|
1360
|
+
transition: "color 0.2s"
|
|
1361
|
+
},
|
|
1362
|
+
onMouseEnter: (e) => e.currentTarget.style.color = "rgba(255,255,255,0.85)",
|
|
1363
|
+
onMouseLeave: (e) => e.currentTarget.style.color = "rgba(255,255,255,0.4)"
|
|
1364
|
+
},
|
|
1365
|
+
link
|
|
1366
|
+
))), /* @__PURE__ */ React21.createElement("div", { style: { width: "100%", height: "1px", background: "rgba(255,255,255,0.06)" } }), /* @__PURE__ */ React21.createElement("p", { style: { fontSize: "12px", color: "rgba(255,255,255,0.22)", margin: 0 } }, "\xA9 ", (/* @__PURE__ */ new Date()).getFullYear(), " ", copyright, ". All rights reserved.")));
|
|
1367
|
+
};
|
|
1314
1368
|
export {
|
|
1315
1369
|
Avatar,
|
|
1316
1370
|
AvatarCard,
|
|
@@ -1318,6 +1372,7 @@ export {
|
|
|
1318
1372
|
CustomInputField,
|
|
1319
1373
|
DividerLine,
|
|
1320
1374
|
FileUpload,
|
|
1375
|
+
Footer,
|
|
1321
1376
|
Loader,
|
|
1322
1377
|
LoadingSpinner,
|
|
1323
1378
|
Navbar,
|