virtual-ui-lib 1.0.59 → 1.0.60

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 CHANGED
@@ -37,6 +37,7 @@ __export(index_exports, {
37
37
  FileUpload: () => FileUpload,
38
38
  Loader: () => Loader,
39
39
  LoadingSpinner: () => LoadingSpinner,
40
+ Navbar: () => Navbar,
40
41
  NotificationToast: () => NotificationToast,
41
42
  OtpInput: () => OtpInput,
42
43
  PricingCard: () => PricingCard,
@@ -1115,6 +1116,255 @@ var PricingCard = ({
1115
1116
  ctaText
1116
1117
  ));
1117
1118
  };
1119
+
1120
+ // src/components/Navbar/Navbar.jsx
1121
+ var import_react20 = __toESM(require("react"));
1122
+ var Navbar = ({
1123
+ logo = "VirtualAI",
1124
+ links = ["Home", "Features", "Pricing", "Blog"],
1125
+ ctaText = "Get Started",
1126
+ accent = "#6366f1",
1127
+ bg = "#0f172a",
1128
+ onCtaClick = () => {
1129
+ },
1130
+ onLinkClick = () => {
1131
+ }
1132
+ }) => {
1133
+ const [scrolled, setScrolled] = (0, import_react20.useState)(false);
1134
+ const [menuOpen, setMenuOpen] = (0, import_react20.useState)(false);
1135
+ const [active, setActive] = (0, import_react20.useState)("Home");
1136
+ const [isMobile, setIsMobile] = (0, import_react20.useState)(false);
1137
+ const alpha = (hex, op) => {
1138
+ const r = parseInt(hex.slice(1, 3), 16);
1139
+ const g = parseInt(hex.slice(3, 5), 16);
1140
+ const b = parseInt(hex.slice(5, 7), 16);
1141
+ return `rgba(${r},${g},${b},${op})`;
1142
+ };
1143
+ (0, import_react20.useEffect)(() => {
1144
+ const checkMobile = () => setIsMobile(window.innerWidth < 768);
1145
+ checkMobile();
1146
+ window.addEventListener("resize", checkMobile);
1147
+ return () => window.removeEventListener("resize", checkMobile);
1148
+ }, []);
1149
+ (0, import_react20.useEffect)(() => {
1150
+ const handler = () => setScrolled(window.scrollY > 10);
1151
+ window.addEventListener("scroll", handler);
1152
+ return () => window.removeEventListener("scroll", handler);
1153
+ }, []);
1154
+ (0, import_react20.useEffect)(() => {
1155
+ if (!isMobile) setMenuOpen(false);
1156
+ }, [isMobile]);
1157
+ const handleLink = (link) => {
1158
+ setActive(link);
1159
+ setMenuOpen(false);
1160
+ onLinkClick(link);
1161
+ };
1162
+ return /* @__PURE__ */ import_react20.default.createElement(import_react20.default.Fragment, null, /* @__PURE__ */ import_react20.default.createElement("style", null, `
1163
+ @keyframes nbSlideDown {
1164
+ from { opacity: 0; transform: translateY(-8px); }
1165
+ to { opacity: 1; transform: translateY(0); }
1166
+ }
1167
+ .nb-link:hover { color: rgba(255,255,255,0.9) !important; background: rgba(255,255,255,0.05) !important; }
1168
+ .nb-cta:hover { opacity: 0.85 !important; }
1169
+ .nb-ham:hover { background: rgba(255,255,255,0.1) !important; }
1170
+ .nb-mlink:hover { background: rgba(255,255,255,0.06) !important; }
1171
+ `), /* @__PURE__ */ import_react20.default.createElement("nav", { style: {
1172
+ position: "sticky",
1173
+ top: 0,
1174
+ left: 0,
1175
+ right: 0,
1176
+ zIndex: 1e3,
1177
+ background: scrolled ? alpha(bg, 0.96) : bg,
1178
+ borderBottom: `1px solid ${scrolled ? "rgba(255,255,255,0.09)" : "rgba(255,255,255,0.04)"}`,
1179
+ backdropFilter: scrolled ? "blur(12px)" : "none",
1180
+ WebkitBackdropFilter: scrolled ? "blur(12px)" : "none",
1181
+ transition: "all 0.3s ease",
1182
+ fontFamily: "system-ui, -apple-system, sans-serif",
1183
+ width: "100%",
1184
+ boxSizing: "border-box"
1185
+ } }, /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1186
+ maxWidth: "1200px",
1187
+ margin: "0 auto",
1188
+ padding: "0 20px",
1189
+ height: isMobile ? "56px" : "64px",
1190
+ display: "flex",
1191
+ alignItems: "center",
1192
+ justifyContent: "space-between",
1193
+ gap: "16px",
1194
+ boxSizing: "border-box"
1195
+ } }, /* @__PURE__ */ import_react20.default.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px", cursor: "pointer", flexShrink: 0 } }, /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1196
+ width: isMobile ? "26px" : "30px",
1197
+ height: isMobile ? "26px" : "30px",
1198
+ borderRadius: "8px",
1199
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.6)})`,
1200
+ display: "flex",
1201
+ alignItems: "center",
1202
+ justifyContent: "center",
1203
+ fontSize: isMobile ? "12px" : "14px",
1204
+ fontWeight: "800",
1205
+ color: "#fff",
1206
+ flexShrink: 0
1207
+ } }, logo[0]), /* @__PURE__ */ import_react20.default.createElement("span", { style: {
1208
+ fontSize: isMobile ? "14px" : "16px",
1209
+ fontWeight: "800",
1210
+ color: "#fff",
1211
+ letterSpacing: "-0.3px"
1212
+ } }, logo)), !isMobile && /* @__PURE__ */ import_react20.default.createElement("div", { style: { display: "flex", alignItems: "center", gap: "2px", flex: 1, justifyContent: "center" } }, links.map((link) => /* @__PURE__ */ import_react20.default.createElement(
1213
+ "button",
1214
+ {
1215
+ key: link,
1216
+ className: "nb-link",
1217
+ onClick: () => handleLink(link),
1218
+ style: {
1219
+ background: active === link ? alpha(accent, 0.12) : "transparent",
1220
+ border: "none",
1221
+ padding: "7px 16px",
1222
+ borderRadius: "9px",
1223
+ fontSize: "14px",
1224
+ fontWeight: active === link ? "700" : "500",
1225
+ color: active === link ? accent : "rgba(255,255,255,0.5)",
1226
+ cursor: "pointer",
1227
+ transition: "all 0.2s",
1228
+ fontFamily: "inherit",
1229
+ whiteSpace: "nowrap"
1230
+ }
1231
+ },
1232
+ link
1233
+ ))), /* @__PURE__ */ import_react20.default.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px", flexShrink: 0 } }, /* @__PURE__ */ import_react20.default.createElement(
1234
+ "button",
1235
+ {
1236
+ className: "nb-cta",
1237
+ onClick: onCtaClick,
1238
+ style: {
1239
+ padding: isMobile ? "7px 14px" : "9px 20px",
1240
+ borderRadius: "10px",
1241
+ border: "none",
1242
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.75)})`,
1243
+ color: "#fff",
1244
+ fontSize: isMobile ? "12px" : "13px",
1245
+ fontWeight: "700",
1246
+ cursor: "pointer",
1247
+ fontFamily: "inherit",
1248
+ transition: "opacity 0.2s",
1249
+ whiteSpace: "nowrap"
1250
+ }
1251
+ },
1252
+ ctaText
1253
+ ), isMobile && /* @__PURE__ */ import_react20.default.createElement(
1254
+ "button",
1255
+ {
1256
+ className: "nb-ham",
1257
+ onClick: () => setMenuOpen((o) => !o),
1258
+ style: {
1259
+ background: "rgba(255,255,255,0.06)",
1260
+ border: "1px solid rgba(255,255,255,0.1)",
1261
+ borderRadius: "8px",
1262
+ width: "34px",
1263
+ height: "34px",
1264
+ cursor: "pointer",
1265
+ display: "flex",
1266
+ flexDirection: "column",
1267
+ alignItems: "center",
1268
+ justifyContent: "center",
1269
+ gap: "5px",
1270
+ transition: "background 0.2s",
1271
+ flexShrink: 0,
1272
+ padding: 0
1273
+ }
1274
+ },
1275
+ /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1276
+ width: "16px",
1277
+ height: "1.5px",
1278
+ background: "rgba(255,255,255,0.7)",
1279
+ borderRadius: "2px",
1280
+ transform: menuOpen ? "rotate(45deg) translate(4px, 4px)" : "none",
1281
+ transition: "transform 0.25s"
1282
+ } }),
1283
+ /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1284
+ width: "16px",
1285
+ height: "1.5px",
1286
+ background: "rgba(255,255,255,0.7)",
1287
+ borderRadius: "2px",
1288
+ opacity: menuOpen ? 0 : 1,
1289
+ transition: "opacity 0.2s"
1290
+ } }),
1291
+ /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1292
+ width: "16px",
1293
+ height: "1.5px",
1294
+ background: "rgba(255,255,255,0.7)",
1295
+ borderRadius: "2px",
1296
+ transform: menuOpen ? "rotate(-45deg) translate(4px, -4px)" : "none",
1297
+ transition: "transform 0.25s"
1298
+ } })
1299
+ ))), isMobile && menuOpen && /* @__PURE__ */ import_react20.default.createElement("div", { style: {
1300
+ animation: "nbSlideDown 0.2s ease",
1301
+ borderTop: "1px solid rgba(255,255,255,0.06)",
1302
+ padding: "10px 16px 16px",
1303
+ display: "flex",
1304
+ flexDirection: "column",
1305
+ gap: "3px",
1306
+ background: alpha(bg, 0.98)
1307
+ } }, links.map((link) => /* @__PURE__ */ import_react20.default.createElement(
1308
+ "button",
1309
+ {
1310
+ key: link,
1311
+ className: "nb-mlink",
1312
+ onClick: () => handleLink(link),
1313
+ style: {
1314
+ background: active === link ? alpha(accent, 0.1) : "transparent",
1315
+ border: "none",
1316
+ padding: "11px 14px",
1317
+ borderRadius: "10px",
1318
+ fontSize: "14px",
1319
+ fontWeight: active === link ? "700" : "500",
1320
+ color: active === link ? accent : "rgba(255,255,255,0.55)",
1321
+ cursor: "pointer",
1322
+ textAlign: "left",
1323
+ fontFamily: "inherit",
1324
+ width: "100%",
1325
+ transition: "all 0.15s",
1326
+ display: "flex",
1327
+ alignItems: "center",
1328
+ justifyContent: "space-between"
1329
+ }
1330
+ },
1331
+ link,
1332
+ active === link && /* @__PURE__ */ import_react20.default.createElement(
1333
+ "svg",
1334
+ {
1335
+ width: "14",
1336
+ height: "14",
1337
+ viewBox: "0 0 24 24",
1338
+ fill: "none",
1339
+ stroke: accent,
1340
+ strokeWidth: "2.5",
1341
+ strokeLinecap: "round"
1342
+ },
1343
+ /* @__PURE__ */ import_react20.default.createElement("polyline", { points: "9 18 15 12 9 6" })
1344
+ )
1345
+ )), /* @__PURE__ */ import_react20.default.createElement("div", { style: { height: "1px", background: "rgba(255,255,255,0.07)", margin: "8px 0" } }), /* @__PURE__ */ import_react20.default.createElement(
1346
+ "button",
1347
+ {
1348
+ onClick: () => {
1349
+ setMenuOpen(false);
1350
+ onCtaClick();
1351
+ },
1352
+ style: {
1353
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.75)})`,
1354
+ border: "none",
1355
+ padding: "12px",
1356
+ borderRadius: "12px",
1357
+ fontSize: "14px",
1358
+ fontWeight: "700",
1359
+ color: "#fff",
1360
+ cursor: "pointer",
1361
+ fontFamily: "inherit",
1362
+ width: "100%"
1363
+ }
1364
+ },
1365
+ ctaText
1366
+ ))));
1367
+ };
1118
1368
  // Annotate the CommonJS export names for ESM import in node:
1119
1369
  0 && (module.exports = {
1120
1370
  Avatar,
@@ -1125,6 +1375,7 @@ var PricingCard = ({
1125
1375
  FileUpload,
1126
1376
  Loader,
1127
1377
  LoadingSpinner,
1378
+ Navbar,
1128
1379
  NotificationToast,
1129
1380
  OtpInput,
1130
1381
  PricingCard,
package/dist/index.mjs CHANGED
@@ -1062,6 +1062,255 @@ var PricingCard = ({
1062
1062
  ctaText
1063
1063
  ));
1064
1064
  };
1065
+
1066
+ // src/components/Navbar/Navbar.jsx
1067
+ import React20, { useState as useState14, useEffect as useEffect6 } from "react";
1068
+ var Navbar = ({
1069
+ logo = "VirtualAI",
1070
+ links = ["Home", "Features", "Pricing", "Blog"],
1071
+ ctaText = "Get Started",
1072
+ accent = "#6366f1",
1073
+ bg = "#0f172a",
1074
+ onCtaClick = () => {
1075
+ },
1076
+ onLinkClick = () => {
1077
+ }
1078
+ }) => {
1079
+ const [scrolled, setScrolled] = useState14(false);
1080
+ const [menuOpen, setMenuOpen] = useState14(false);
1081
+ const [active, setActive] = useState14("Home");
1082
+ const [isMobile, setIsMobile] = useState14(false);
1083
+ const alpha = (hex, op) => {
1084
+ const r = parseInt(hex.slice(1, 3), 16);
1085
+ const g = parseInt(hex.slice(3, 5), 16);
1086
+ const b = parseInt(hex.slice(5, 7), 16);
1087
+ return `rgba(${r},${g},${b},${op})`;
1088
+ };
1089
+ useEffect6(() => {
1090
+ const checkMobile = () => setIsMobile(window.innerWidth < 768);
1091
+ checkMobile();
1092
+ window.addEventListener("resize", checkMobile);
1093
+ return () => window.removeEventListener("resize", checkMobile);
1094
+ }, []);
1095
+ useEffect6(() => {
1096
+ const handler = () => setScrolled(window.scrollY > 10);
1097
+ window.addEventListener("scroll", handler);
1098
+ return () => window.removeEventListener("scroll", handler);
1099
+ }, []);
1100
+ useEffect6(() => {
1101
+ if (!isMobile) setMenuOpen(false);
1102
+ }, [isMobile]);
1103
+ const handleLink = (link) => {
1104
+ setActive(link);
1105
+ setMenuOpen(false);
1106
+ onLinkClick(link);
1107
+ };
1108
+ return /* @__PURE__ */ React20.createElement(React20.Fragment, null, /* @__PURE__ */ React20.createElement("style", null, `
1109
+ @keyframes nbSlideDown {
1110
+ from { opacity: 0; transform: translateY(-8px); }
1111
+ to { opacity: 1; transform: translateY(0); }
1112
+ }
1113
+ .nb-link:hover { color: rgba(255,255,255,0.9) !important; background: rgba(255,255,255,0.05) !important; }
1114
+ .nb-cta:hover { opacity: 0.85 !important; }
1115
+ .nb-ham:hover { background: rgba(255,255,255,0.1) !important; }
1116
+ .nb-mlink:hover { background: rgba(255,255,255,0.06) !important; }
1117
+ `), /* @__PURE__ */ React20.createElement("nav", { style: {
1118
+ position: "sticky",
1119
+ top: 0,
1120
+ left: 0,
1121
+ right: 0,
1122
+ zIndex: 1e3,
1123
+ background: scrolled ? alpha(bg, 0.96) : bg,
1124
+ borderBottom: `1px solid ${scrolled ? "rgba(255,255,255,0.09)" : "rgba(255,255,255,0.04)"}`,
1125
+ backdropFilter: scrolled ? "blur(12px)" : "none",
1126
+ WebkitBackdropFilter: scrolled ? "blur(12px)" : "none",
1127
+ transition: "all 0.3s ease",
1128
+ fontFamily: "system-ui, -apple-system, sans-serif",
1129
+ width: "100%",
1130
+ boxSizing: "border-box"
1131
+ } }, /* @__PURE__ */ React20.createElement("div", { style: {
1132
+ maxWidth: "1200px",
1133
+ margin: "0 auto",
1134
+ padding: "0 20px",
1135
+ height: isMobile ? "56px" : "64px",
1136
+ display: "flex",
1137
+ alignItems: "center",
1138
+ justifyContent: "space-between",
1139
+ gap: "16px",
1140
+ boxSizing: "border-box"
1141
+ } }, /* @__PURE__ */ React20.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px", cursor: "pointer", flexShrink: 0 } }, /* @__PURE__ */ React20.createElement("div", { style: {
1142
+ width: isMobile ? "26px" : "30px",
1143
+ height: isMobile ? "26px" : "30px",
1144
+ borderRadius: "8px",
1145
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.6)})`,
1146
+ display: "flex",
1147
+ alignItems: "center",
1148
+ justifyContent: "center",
1149
+ fontSize: isMobile ? "12px" : "14px",
1150
+ fontWeight: "800",
1151
+ color: "#fff",
1152
+ flexShrink: 0
1153
+ } }, logo[0]), /* @__PURE__ */ React20.createElement("span", { style: {
1154
+ fontSize: isMobile ? "14px" : "16px",
1155
+ fontWeight: "800",
1156
+ color: "#fff",
1157
+ letterSpacing: "-0.3px"
1158
+ } }, logo)), !isMobile && /* @__PURE__ */ React20.createElement("div", { style: { display: "flex", alignItems: "center", gap: "2px", flex: 1, justifyContent: "center" } }, links.map((link) => /* @__PURE__ */ React20.createElement(
1159
+ "button",
1160
+ {
1161
+ key: link,
1162
+ className: "nb-link",
1163
+ onClick: () => handleLink(link),
1164
+ style: {
1165
+ background: active === link ? alpha(accent, 0.12) : "transparent",
1166
+ border: "none",
1167
+ padding: "7px 16px",
1168
+ borderRadius: "9px",
1169
+ fontSize: "14px",
1170
+ fontWeight: active === link ? "700" : "500",
1171
+ color: active === link ? accent : "rgba(255,255,255,0.5)",
1172
+ cursor: "pointer",
1173
+ transition: "all 0.2s",
1174
+ fontFamily: "inherit",
1175
+ whiteSpace: "nowrap"
1176
+ }
1177
+ },
1178
+ link
1179
+ ))), /* @__PURE__ */ React20.createElement("div", { style: { display: "flex", alignItems: "center", gap: "8px", flexShrink: 0 } }, /* @__PURE__ */ React20.createElement(
1180
+ "button",
1181
+ {
1182
+ className: "nb-cta",
1183
+ onClick: onCtaClick,
1184
+ style: {
1185
+ padding: isMobile ? "7px 14px" : "9px 20px",
1186
+ borderRadius: "10px",
1187
+ border: "none",
1188
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.75)})`,
1189
+ color: "#fff",
1190
+ fontSize: isMobile ? "12px" : "13px",
1191
+ fontWeight: "700",
1192
+ cursor: "pointer",
1193
+ fontFamily: "inherit",
1194
+ transition: "opacity 0.2s",
1195
+ whiteSpace: "nowrap"
1196
+ }
1197
+ },
1198
+ ctaText
1199
+ ), isMobile && /* @__PURE__ */ React20.createElement(
1200
+ "button",
1201
+ {
1202
+ className: "nb-ham",
1203
+ onClick: () => setMenuOpen((o) => !o),
1204
+ style: {
1205
+ background: "rgba(255,255,255,0.06)",
1206
+ border: "1px solid rgba(255,255,255,0.1)",
1207
+ borderRadius: "8px",
1208
+ width: "34px",
1209
+ height: "34px",
1210
+ cursor: "pointer",
1211
+ display: "flex",
1212
+ flexDirection: "column",
1213
+ alignItems: "center",
1214
+ justifyContent: "center",
1215
+ gap: "5px",
1216
+ transition: "background 0.2s",
1217
+ flexShrink: 0,
1218
+ padding: 0
1219
+ }
1220
+ },
1221
+ /* @__PURE__ */ React20.createElement("div", { style: {
1222
+ width: "16px",
1223
+ height: "1.5px",
1224
+ background: "rgba(255,255,255,0.7)",
1225
+ borderRadius: "2px",
1226
+ transform: menuOpen ? "rotate(45deg) translate(4px, 4px)" : "none",
1227
+ transition: "transform 0.25s"
1228
+ } }),
1229
+ /* @__PURE__ */ React20.createElement("div", { style: {
1230
+ width: "16px",
1231
+ height: "1.5px",
1232
+ background: "rgba(255,255,255,0.7)",
1233
+ borderRadius: "2px",
1234
+ opacity: menuOpen ? 0 : 1,
1235
+ transition: "opacity 0.2s"
1236
+ } }),
1237
+ /* @__PURE__ */ React20.createElement("div", { style: {
1238
+ width: "16px",
1239
+ height: "1.5px",
1240
+ background: "rgba(255,255,255,0.7)",
1241
+ borderRadius: "2px",
1242
+ transform: menuOpen ? "rotate(-45deg) translate(4px, -4px)" : "none",
1243
+ transition: "transform 0.25s"
1244
+ } })
1245
+ ))), isMobile && menuOpen && /* @__PURE__ */ React20.createElement("div", { style: {
1246
+ animation: "nbSlideDown 0.2s ease",
1247
+ borderTop: "1px solid rgba(255,255,255,0.06)",
1248
+ padding: "10px 16px 16px",
1249
+ display: "flex",
1250
+ flexDirection: "column",
1251
+ gap: "3px",
1252
+ background: alpha(bg, 0.98)
1253
+ } }, links.map((link) => /* @__PURE__ */ React20.createElement(
1254
+ "button",
1255
+ {
1256
+ key: link,
1257
+ className: "nb-mlink",
1258
+ onClick: () => handleLink(link),
1259
+ style: {
1260
+ background: active === link ? alpha(accent, 0.1) : "transparent",
1261
+ border: "none",
1262
+ padding: "11px 14px",
1263
+ borderRadius: "10px",
1264
+ fontSize: "14px",
1265
+ fontWeight: active === link ? "700" : "500",
1266
+ color: active === link ? accent : "rgba(255,255,255,0.55)",
1267
+ cursor: "pointer",
1268
+ textAlign: "left",
1269
+ fontFamily: "inherit",
1270
+ width: "100%",
1271
+ transition: "all 0.15s",
1272
+ display: "flex",
1273
+ alignItems: "center",
1274
+ justifyContent: "space-between"
1275
+ }
1276
+ },
1277
+ link,
1278
+ active === link && /* @__PURE__ */ React20.createElement(
1279
+ "svg",
1280
+ {
1281
+ width: "14",
1282
+ height: "14",
1283
+ viewBox: "0 0 24 24",
1284
+ fill: "none",
1285
+ stroke: accent,
1286
+ strokeWidth: "2.5",
1287
+ strokeLinecap: "round"
1288
+ },
1289
+ /* @__PURE__ */ React20.createElement("polyline", { points: "9 18 15 12 9 6" })
1290
+ )
1291
+ )), /* @__PURE__ */ React20.createElement("div", { style: { height: "1px", background: "rgba(255,255,255,0.07)", margin: "8px 0" } }), /* @__PURE__ */ React20.createElement(
1292
+ "button",
1293
+ {
1294
+ onClick: () => {
1295
+ setMenuOpen(false);
1296
+ onCtaClick();
1297
+ },
1298
+ style: {
1299
+ background: `linear-gradient(135deg, ${accent}, ${alpha(accent, 0.75)})`,
1300
+ border: "none",
1301
+ padding: "12px",
1302
+ borderRadius: "12px",
1303
+ fontSize: "14px",
1304
+ fontWeight: "700",
1305
+ color: "#fff",
1306
+ cursor: "pointer",
1307
+ fontFamily: "inherit",
1308
+ width: "100%"
1309
+ }
1310
+ },
1311
+ ctaText
1312
+ ))));
1313
+ };
1065
1314
  export {
1066
1315
  Avatar,
1067
1316
  AvatarCard,
@@ -1071,6 +1320,7 @@ export {
1071
1320
  FileUpload,
1072
1321
  Loader,
1073
1322
  LoadingSpinner,
1323
+ Navbar,
1074
1324
  NotificationToast,
1075
1325
  OtpInput,
1076
1326
  PricingCard,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "virtual-ui-lib",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "Virtual UI React Component Library",
5
5
  "author": "Ankush",
6
6
  "license": "ISC",