@opensite/ui 1.5.1 → 1.5.3

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.
Files changed (63) hide show
  1. package/dist/about-location-info-hero.cjs +26 -48
  2. package/dist/about-location-info-hero.d.cts +1 -1
  3. package/dist/about-location-info-hero.d.ts +1 -1
  4. package/dist/about-location-info-hero.js +26 -48
  5. package/dist/components.cjs +338 -133
  6. package/dist/components.js +338 -133
  7. package/dist/footer-accordion-social.cjs +3 -1
  8. package/dist/footer-accordion-social.js +3 -1
  9. package/dist/footer-animated-social.cjs +13 -2
  10. package/dist/footer-animated-social.js +13 -2
  11. package/dist/footer-background-card.cjs +239 -69
  12. package/dist/footer-background-card.d.cts +9 -1
  13. package/dist/footer-background-card.d.ts +9 -1
  14. package/dist/footer-background-card.js +240 -70
  15. package/dist/footer-brand-description.cjs +3 -1
  16. package/dist/footer-brand-description.js +3 -1
  17. package/dist/footer-brand-links-contact.cjs +3 -1
  18. package/dist/footer-brand-links-contact.js +3 -1
  19. package/dist/footer-comprehensive-links.cjs +3 -1
  20. package/dist/footer-comprehensive-links.js +3 -1
  21. package/dist/footer-contact-card.cjs +3 -1
  22. package/dist/footer-contact-card.js +3 -1
  23. package/dist/footer-cta-banner.cjs +3 -1
  24. package/dist/footer-cta-banner.js +3 -1
  25. package/dist/footer-cta-social.cjs +3 -1
  26. package/dist/footer-cta-social.js +3 -1
  27. package/dist/footer-info-cards-accordion.cjs +3 -1
  28. package/dist/footer-info-cards-accordion.js +3 -1
  29. package/dist/footer-nav-social.cjs +159 -62
  30. package/dist/footer-nav-social.d.cts +9 -1
  31. package/dist/footer-nav-social.d.ts +9 -1
  32. package/dist/footer-nav-social.js +159 -62
  33. package/dist/footer-newsletter-contact.cjs +3 -1
  34. package/dist/footer-newsletter-contact.js +3 -1
  35. package/dist/footer-newsletter-grid.cjs +3 -1
  36. package/dist/footer-newsletter-grid.js +3 -1
  37. package/dist/footer-newsletter-minimal.cjs +3 -1
  38. package/dist/footer-newsletter-minimal.js +3 -1
  39. package/dist/footer-simple-centered.cjs +1 -1
  40. package/dist/footer-simple-centered.d.cts +1 -1
  41. package/dist/footer-simple-centered.d.ts +1 -1
  42. package/dist/footer-simple-centered.js +1 -1
  43. package/dist/footer-social-apps.cjs +3 -1
  44. package/dist/footer-social-apps.js +3 -1
  45. package/dist/footer-social-newsletter.cjs +3 -1
  46. package/dist/footer-social-newsletter.js +3 -1
  47. package/dist/footer-split-image-accordion.cjs +3 -1
  48. package/dist/footer-split-image-accordion.js +3 -1
  49. package/dist/hero-centered-screenshot.cjs +46 -59
  50. package/dist/hero-centered-screenshot.d.cts +1 -1
  51. package/dist/hero-centered-screenshot.d.ts +1 -1
  52. package/dist/hero-centered-screenshot.js +46 -59
  53. package/dist/index.cjs +338 -133
  54. package/dist/index.js +338 -133
  55. package/dist/navbar-fullscreen-menu.cjs +3 -1
  56. package/dist/navbar-fullscreen-menu.js +3 -1
  57. package/dist/navbar-transparent-overlay.cjs +3 -1
  58. package/dist/navbar-transparent-overlay.js +3 -1
  59. package/dist/registry.cjs +410 -166
  60. package/dist/registry.js +410 -166
  61. package/dist/social-link-icon.cjs +3 -1
  62. package/dist/social-link-icon.js +3 -1
  63. package/package.json +2 -2
@@ -5,7 +5,7 @@ import { clsx } from 'clsx';
5
5
  import { twMerge } from 'tailwind-merge';
6
6
  import { Img } from '@page-speed/img';
7
7
  import { cva } from 'class-variance-authority';
8
- import { jsx, jsxs } from 'react/jsx-runtime';
8
+ import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
9
9
 
10
10
  // components/blocks/footers/footer-background-card.tsx
11
11
  function cn(...inputs) {
@@ -1336,6 +1336,78 @@ var Section = React__default.forwardRef(
1336
1336
  }
1337
1337
  );
1338
1338
  Section.displayName = "Section";
1339
+ function isThemedLogo(logo) {
1340
+ return "light" in logo || "dark" in logo;
1341
+ }
1342
+ var FooterLogo = ({
1343
+ logo,
1344
+ logoSlot,
1345
+ logoClassName,
1346
+ logoImageClassName,
1347
+ logoTitleClassName,
1348
+ optixFlowConfig
1349
+ }) => {
1350
+ if (logoSlot) return /* @__PURE__ */ jsx(Fragment, { children: logoSlot });
1351
+ if (!logo) return null;
1352
+ const hasThemedSources = isThemedLogo(logo) && (logo.light || logo.dark);
1353
+ const hasStandardSource = !isThemedLogo(logo) && logo.src;
1354
+ const logoContent = hasThemedSources ? (
1355
+ // Themed logo with light/dark mode sources
1356
+ /* @__PURE__ */ jsxs(Fragment, { children: [
1357
+ logo.light && /* @__PURE__ */ jsx(
1358
+ Img,
1359
+ {
1360
+ src: logo.light,
1361
+ alt: logo.alt || "Logo",
1362
+ className: cn(
1363
+ "h-8 w-auto object-contain dark:hidden md:h-10",
1364
+ logoImageClassName
1365
+ ),
1366
+ optixFlowConfig
1367
+ }
1368
+ ),
1369
+ logo.dark && /* @__PURE__ */ jsx(
1370
+ Img,
1371
+ {
1372
+ src: logo.dark,
1373
+ alt: logo.alt || "Logo",
1374
+ className: cn(
1375
+ "hidden h-8 w-auto object-contain dark:block md:h-10",
1376
+ logoImageClassName
1377
+ ),
1378
+ optixFlowConfig
1379
+ }
1380
+ )
1381
+ ] })
1382
+ ) : hasStandardSource ? (
1383
+ // Standard single logo image
1384
+ /* @__PURE__ */ jsx(
1385
+ Img,
1386
+ {
1387
+ src: logo.src,
1388
+ alt: logo.alt || "Logo",
1389
+ className: cn("h-8 w-auto object-contain md:h-10", logoImageClassName),
1390
+ optixFlowConfig
1391
+ }
1392
+ )
1393
+ ) : logo.title ? (
1394
+ // Text-based logo fallback
1395
+ /* @__PURE__ */ jsx("span", { className: cn("text-lg font-semibold md:text-xl", logoTitleClassName), children: logo.title })
1396
+ ) : null;
1397
+ if (!logoContent) return null;
1398
+ if (logo.url) {
1399
+ return /* @__PURE__ */ jsx(
1400
+ Pressable,
1401
+ {
1402
+ href: logo.url,
1403
+ className: cn("inline-flex items-center", logoClassName),
1404
+ children: logoContent
1405
+ }
1406
+ );
1407
+ }
1408
+ return /* @__PURE__ */ jsx("div", { className: cn("inline-flex items-center", logoClassName), children: logoContent });
1409
+ };
1410
+ var footer_logo_default = FooterLogo;
1339
1411
  function FooterBackgroundCard({
1340
1412
  logo,
1341
1413
  backgroundImage,
@@ -1349,6 +1421,8 @@ function FooterBackgroundCard({
1349
1421
  menuItems,
1350
1422
  copyright,
1351
1423
  bottomLinks,
1424
+ logoWrapperClassName,
1425
+ logoClassName,
1352
1426
  className,
1353
1427
  cardClassName,
1354
1428
  gridClassName,
@@ -1367,7 +1441,8 @@ function FooterBackgroundCard({
1367
1441
  copyrightClassName,
1368
1442
  bottomLinksClassName,
1369
1443
  background,
1370
- spacing,
1444
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1445
+ spacing = "py-6 md:py-32",
1371
1446
  pattern,
1372
1447
  patternOpacity,
1373
1448
  optixFlowConfig
@@ -1385,79 +1460,174 @@ function FooterBackgroundCard({
1385
1460
  patternOpacity,
1386
1461
  className: cn("bg-cover bg-center bg-no-repeat", className),
1387
1462
  style: sectionStyle,
1388
- children: /* @__PURE__ */ jsxs("div", { className: cn("mx-auto max-w-7xl rounded-lg p-8 shadow-lg md:p-12", cardClassName), children: [
1389
- /* @__PURE__ */ jsxs("div", { className: cn("grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-4 lg:gap-12", gridClassName), children: [
1390
- (profileImage || tagline || personalMessage || ctaText) && /* @__PURE__ */ jsxs("div", { className: cn("lg:col-span-1", profileSectionClassName), children: [
1391
- (profileImage || tagline) && /* @__PURE__ */ jsxs("div", { className: "mb-4 flex items-center gap-4", children: [
1392
- profileImage && /* @__PURE__ */ jsx(
1393
- Img,
1394
- {
1395
- src: profileImage,
1396
- alt: "Profile",
1397
- className: cn("h-16 w-16 rounded-full object-cover", profileImageClassName),
1398
- optixFlowConfig
1399
- }
1400
- ),
1401
- tagline && /* @__PURE__ */ jsx("h3", { className: cn("text-2xl font-medium", taglineClassName), children: tagline })
1402
- ] }),
1403
- personalMessage && /* @__PURE__ */ jsx("p", { className: cn("mb-6 text-sm leading-relaxed opacity-80", messageClassName), children: personalMessage }),
1404
- ctaText && /* @__PURE__ */ jsx(
1405
- Pressable,
1406
- {
1407
- href: ctaUrl || "#",
1408
- className: cn("inline-flex items-center justify-center whitespace-nowrap rounded-md border text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 hover:opacity-80 h-10 px-4 py-2", ctaClassName),
1409
- children: ctaText
1410
- }
1411
- )
1412
- ] }),
1413
- menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxs("div", { className: cn(menuSectionClassName), children: [
1414
- /* @__PURE__ */ jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", menuTitleClassName), children: menu.title }),
1415
- /* @__PURE__ */ jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1416
- Pressable,
1463
+ containerClassName,
1464
+ children: /* @__PURE__ */ jsxs(
1465
+ "div",
1466
+ {
1467
+ className: cn(
1468
+ "mx-auto max-w-7xl rounded-2xl p-12 shadow-xl md:p-16 bg-card text-card-foreground",
1469
+ cardClassName
1470
+ ),
1471
+ children: [
1472
+ /* @__PURE__ */ jsxs(
1473
+ "div",
1417
1474
  {
1418
- href: link.url,
1419
- className: cn("border-b border-transparent opacity-80 transition-all duration-300 ease-in-out hover:opacity-100", menuLinkClassName),
1420
- children: link.text
1475
+ className: cn(
1476
+ "grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-4 lg:gap-12",
1477
+ gridClassName
1478
+ ),
1479
+ children: [
1480
+ (profileImage || tagline || personalMessage || ctaText || logo) && /* @__PURE__ */ jsxs("div", { className: cn("lg:col-span-1", profileSectionClassName), children: [
1481
+ /* @__PURE__ */ jsx(
1482
+ footer_logo_default,
1483
+ {
1484
+ logo,
1485
+ logoClassName: cn("mb-12", logoWrapperClassName),
1486
+ logoImageClassName: logoClassName,
1487
+ optixFlowConfig
1488
+ }
1489
+ ),
1490
+ (profileImage || tagline) && /* @__PURE__ */ jsxs("div", { className: "mb-4 flex items-center gap-4", children: [
1491
+ profileImage && /* @__PURE__ */ jsx(
1492
+ Img,
1493
+ {
1494
+ src: profileImage,
1495
+ alt: "Profile",
1496
+ className: cn(
1497
+ "h-16 w-16 rounded-full object-cover",
1498
+ profileImageClassName
1499
+ ),
1500
+ optixFlowConfig
1501
+ }
1502
+ ),
1503
+ tagline && /* @__PURE__ */ jsx(
1504
+ "h3",
1505
+ {
1506
+ className: cn("text-2xl font-medium", taglineClassName),
1507
+ children: tagline
1508
+ }
1509
+ )
1510
+ ] }),
1511
+ personalMessage && /* @__PURE__ */ jsx(
1512
+ "p",
1513
+ {
1514
+ className: cn(
1515
+ "mb-6 text-sm leading-relaxed opacity-80",
1516
+ messageClassName
1517
+ ),
1518
+ children: personalMessage
1519
+ }
1520
+ ),
1521
+ ctaText && /* @__PURE__ */ jsx(
1522
+ Pressable,
1523
+ {
1524
+ href: ctaUrl || "#",
1525
+ className: cn(
1526
+ "inline-flex items-center justify-center whitespace-nowrap rounded-md border text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 hover:opacity-80 h-10 px-4 py-2",
1527
+ ctaClassName
1528
+ ),
1529
+ children: ctaText
1530
+ }
1531
+ )
1532
+ ] }),
1533
+ menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxs(
1534
+ "div",
1535
+ {
1536
+ className: cn("pl-0 md:pl-8", menuSectionClassName),
1537
+ children: [
1538
+ /* @__PURE__ */ jsx(
1539
+ "h3",
1540
+ {
1541
+ className: cn(
1542
+ "mb-4 text-sm font-medium tracking-wider uppercase",
1543
+ menuTitleClassName
1544
+ ),
1545
+ children: menu.title
1546
+ }
1547
+ ),
1548
+ /* @__PURE__ */ jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1549
+ Pressable,
1550
+ {
1551
+ href: link.url,
1552
+ className: cn(
1553
+ "border-b border-transparent opacity-80 transition-all duration-300 ease-in-out hover:opacity-100",
1554
+ menuLinkClassName
1555
+ ),
1556
+ children: link.text
1557
+ }
1558
+ ) }, index)) })
1559
+ ]
1560
+ },
1561
+ idx
1562
+ )),
1563
+ (contactTitle || contact) && /* @__PURE__ */ jsxs("div", { className: cn("pl-0 md:pl-8", contactSectionClassName), children: [
1564
+ contactTitle && /* @__PURE__ */ jsx(
1565
+ "h3",
1566
+ {
1567
+ className: cn(
1568
+ "mb-4 text-sm font-medium tracking-wider uppercase",
1569
+ contactTitleClassName
1570
+ ),
1571
+ children: contactTitle
1572
+ }
1573
+ ),
1574
+ contact && /* @__PURE__ */ jsxs("ul", { className: "space-y-3", children: [
1575
+ contact.phone && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
1576
+ contact.email && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
1577
+ (contact.location || contact.timezone) && /* @__PURE__ */ jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
1578
+ contact.location,
1579
+ contact.location && contact.timezone && " \u2022 ",
1580
+ contact.timezone
1581
+ ] })
1582
+ ] })
1583
+ ] })
1584
+ ]
1421
1585
  }
1422
- ) }, index)) })
1423
- ] }, idx)),
1424
- (contactTitle || contact) && /* @__PURE__ */ jsxs("div", { className: cn(contactSectionClassName), children: [
1425
- contactTitle && /* @__PURE__ */ jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", contactTitleClassName), children: contactTitle }),
1426
- contact && /* @__PURE__ */ jsxs("ul", { className: "space-y-3", children: [
1427
- contact.phone && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
1428
- contact.email && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
1429
- (contact.location || contact.timezone) && /* @__PURE__ */ jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
1430
- contact.location,
1431
- contact.location && contact.timezone && " \u2022 ",
1432
- contact.timezone
1433
- ] })
1434
- ] })
1435
- ] })
1436
- ] }),
1437
- /* @__PURE__ */ jsxs("div", { className: cn("mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row", bottomClassName), children: [
1438
- /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4", copyrightClassName), children: [
1439
- /* @__PURE__ */ jsx(FooterCopyright, { copyright }),
1440
- /* @__PURE__ */ jsx(
1441
- BrandAttribution,
1586
+ ),
1587
+ /* @__PURE__ */ jsxs(
1588
+ "div",
1442
1589
  {
1443
- internalBrandSlug: "open_site_ai",
1444
- optionIndex: 3,
1445
- variant: "span",
1446
- linkClassName: "hover:opacity-100"
1590
+ className: cn(
1591
+ "mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row",
1592
+ bottomClassName
1593
+ ),
1594
+ children: [
1595
+ /* @__PURE__ */ jsxs(
1596
+ "div",
1597
+ {
1598
+ className: cn(
1599
+ "flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4",
1600
+ copyrightClassName
1601
+ ),
1602
+ children: [
1603
+ /* @__PURE__ */ jsx(FooterCopyright, { copyright }),
1604
+ /* @__PURE__ */ jsx(
1605
+ BrandAttribution,
1606
+ {
1607
+ internalBrandSlug: "open_site_ai",
1608
+ optionIndex: 3,
1609
+ variant: "span",
1610
+ linkClassName: "hover:opacity-100"
1611
+ }
1612
+ )
1613
+ ]
1614
+ }
1615
+ ),
1616
+ bottomLinks && bottomLinks.length > 0 && /* @__PURE__ */ jsx("div", { className: cn("flex gap-4", bottomLinksClassName), children: bottomLinks.map((link, idx) => /* @__PURE__ */ jsx(
1617
+ Pressable,
1618
+ {
1619
+ href: link.url,
1620
+ className: "text-sm opacity-80 transition-colors hover:opacity-100",
1621
+ children: link.text
1622
+ },
1623
+ idx
1624
+ )) })
1625
+ ]
1447
1626
  }
1448
1627
  )
1449
- ] }),
1450
- bottomLinks && bottomLinks.length > 0 && /* @__PURE__ */ jsx("div", { className: cn("flex gap-4", bottomLinksClassName), children: bottomLinks.map((link, idx) => /* @__PURE__ */ jsx(
1451
- Pressable,
1452
- {
1453
- href: link.url,
1454
- className: "text-sm opacity-80 transition-colors hover:opacity-100",
1455
- children: link.text
1456
- },
1457
- idx
1458
- )) })
1459
- ] })
1460
- ] })
1628
+ ]
1629
+ }
1630
+ )
1461
1631
  }
1462
1632
  );
1463
1633
  }
@@ -1544,7 +1544,7 @@ var platformIconMap = {
1544
1544
  yelp: "cib/yelp",
1545
1545
  spotify: "cib/spotify",
1546
1546
  apple: "cib/apple",
1547
- x: "line-md/twitter-x",
1547
+ x: "line-md/twitter-x-alt",
1548
1548
  github: "cib/github",
1549
1549
  snapchat: "cib/snapchat",
1550
1550
  discord: "cib/discord",
@@ -1563,6 +1563,8 @@ var platformIconMap = {
1563
1563
  npmjs: "simple-icons/npm",
1564
1564
  crates: "cib/rust",
1565
1565
  rubygems: "cib/rubygems",
1566
+ behance: "cib/behance",
1567
+ dribbble: "cib/dribbble",
1566
1568
  unknown: "icon-park-solid/circular-connection"
1567
1569
  };
1568
1570
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1523,7 +1523,7 @@ var platformIconMap = {
1523
1523
  yelp: "cib/yelp",
1524
1524
  spotify: "cib/spotify",
1525
1525
  apple: "cib/apple",
1526
- x: "line-md/twitter-x",
1526
+ x: "line-md/twitter-x-alt",
1527
1527
  github: "cib/github",
1528
1528
  snapchat: "cib/snapchat",
1529
1529
  discord: "cib/discord",
@@ -1542,6 +1542,8 @@ var platformIconMap = {
1542
1542
  npmjs: "simple-icons/npm",
1543
1543
  crates: "cib/rust",
1544
1544
  rubygems: "cib/rubygems",
1545
+ behance: "cib/behance",
1546
+ dribbble: "cib/dribbble",
1545
1547
  unknown: "icon-park-solid/circular-connection"
1546
1548
  };
1547
1549
  var SocialLinkIcon = React.forwardRef(
@@ -1098,7 +1098,7 @@ var platformIconMap = {
1098
1098
  yelp: "cib/yelp",
1099
1099
  spotify: "cib/spotify",
1100
1100
  apple: "cib/apple",
1101
- x: "line-md/twitter-x",
1101
+ x: "line-md/twitter-x-alt",
1102
1102
  github: "cib/github",
1103
1103
  snapchat: "cib/snapchat",
1104
1104
  discord: "cib/discord",
@@ -1117,6 +1117,8 @@ var platformIconMap = {
1117
1117
  npmjs: "simple-icons/npm",
1118
1118
  crates: "cib/rust",
1119
1119
  rubygems: "cib/rubygems",
1120
+ behance: "cib/behance",
1121
+ dribbble: "cib/dribbble",
1120
1122
  unknown: "icon-park-solid/circular-connection"
1121
1123
  };
1122
1124
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1077,7 +1077,7 @@ var platformIconMap = {
1077
1077
  yelp: "cib/yelp",
1078
1078
  spotify: "cib/spotify",
1079
1079
  apple: "cib/apple",
1080
- x: "line-md/twitter-x",
1080
+ x: "line-md/twitter-x-alt",
1081
1081
  github: "cib/github",
1082
1082
  snapchat: "cib/snapchat",
1083
1083
  discord: "cib/discord",
@@ -1096,6 +1096,8 @@ var platformIconMap = {
1096
1096
  npmjs: "simple-icons/npm",
1097
1097
  crates: "cib/rust",
1098
1098
  rubygems: "cib/rubygems",
1099
+ behance: "cib/behance",
1100
+ dribbble: "cib/dribbble",
1099
1101
  unknown: "icon-park-solid/circular-connection"
1100
1102
  };
1101
1103
  var SocialLinkIcon = React.forwardRef(
@@ -1098,7 +1098,7 @@ var platformIconMap = {
1098
1098
  yelp: "cib/yelp",
1099
1099
  spotify: "cib/spotify",
1100
1100
  apple: "cib/apple",
1101
- x: "line-md/twitter-x",
1101
+ x: "line-md/twitter-x-alt",
1102
1102
  github: "cib/github",
1103
1103
  snapchat: "cib/snapchat",
1104
1104
  discord: "cib/discord",
@@ -1117,6 +1117,8 @@ var platformIconMap = {
1117
1117
  npmjs: "simple-icons/npm",
1118
1118
  crates: "cib/rust",
1119
1119
  rubygems: "cib/rubygems",
1120
+ behance: "cib/behance",
1121
+ dribbble: "cib/dribbble",
1120
1122
  unknown: "icon-park-solid/circular-connection"
1121
1123
  };
1122
1124
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1077,7 +1077,7 @@ var platformIconMap = {
1077
1077
  yelp: "cib/yelp",
1078
1078
  spotify: "cib/spotify",
1079
1079
  apple: "cib/apple",
1080
- x: "line-md/twitter-x",
1080
+ x: "line-md/twitter-x-alt",
1081
1081
  github: "cib/github",
1082
1082
  snapchat: "cib/snapchat",
1083
1083
  discord: "cib/discord",
@@ -1096,6 +1096,8 @@ var platformIconMap = {
1096
1096
  npmjs: "simple-icons/npm",
1097
1097
  crates: "cib/rust",
1098
1098
  rubygems: "cib/rubygems",
1099
+ behance: "cib/behance",
1100
+ dribbble: "cib/dribbble",
1099
1101
  unknown: "icon-park-solid/circular-connection"
1100
1102
  };
1101
1103
  var SocialLinkIcon = React.forwardRef(
@@ -1544,7 +1544,7 @@ var platformIconMap = {
1544
1544
  yelp: "cib/yelp",
1545
1545
  spotify: "cib/spotify",
1546
1546
  apple: "cib/apple",
1547
- x: "line-md/twitter-x",
1547
+ x: "line-md/twitter-x-alt",
1548
1548
  github: "cib/github",
1549
1549
  snapchat: "cib/snapchat",
1550
1550
  discord: "cib/discord",
@@ -1563,6 +1563,8 @@ var platformIconMap = {
1563
1563
  npmjs: "simple-icons/npm",
1564
1564
  crates: "cib/rust",
1565
1565
  rubygems: "cib/rubygems",
1566
+ behance: "cib/behance",
1567
+ dribbble: "cib/dribbble",
1566
1568
  unknown: "icon-park-solid/circular-connection"
1567
1569
  };
1568
1570
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1523,7 +1523,7 @@ var platformIconMap = {
1523
1523
  yelp: "cib/yelp",
1524
1524
  spotify: "cib/spotify",
1525
1525
  apple: "cib/apple",
1526
- x: "line-md/twitter-x",
1526
+ x: "line-md/twitter-x-alt",
1527
1527
  github: "cib/github",
1528
1528
  snapchat: "cib/snapchat",
1529
1529
  discord: "cib/discord",
@@ -1542,6 +1542,8 @@ var platformIconMap = {
1542
1542
  npmjs: "simple-icons/npm",
1543
1543
  crates: "cib/rust",
1544
1544
  rubygems: "cib/rubygems",
1545
+ behance: "cib/behance",
1546
+ dribbble: "cib/dribbble",
1545
1547
  unknown: "icon-park-solid/circular-connection"
1546
1548
  };
1547
1549
  var SocialLinkIcon = React.forwardRef(
@@ -1544,7 +1544,7 @@ var platformIconMap = {
1544
1544
  yelp: "cib/yelp",
1545
1545
  spotify: "cib/spotify",
1546
1546
  apple: "cib/apple",
1547
- x: "line-md/twitter-x",
1547
+ x: "line-md/twitter-x-alt",
1548
1548
  github: "cib/github",
1549
1549
  snapchat: "cib/snapchat",
1550
1550
  discord: "cib/discord",
@@ -1563,6 +1563,8 @@ var platformIconMap = {
1563
1563
  npmjs: "simple-icons/npm",
1564
1564
  crates: "cib/rust",
1565
1565
  rubygems: "cib/rubygems",
1566
+ behance: "cib/behance",
1567
+ dribbble: "cib/dribbble",
1566
1568
  unknown: "icon-park-solid/circular-connection"
1567
1569
  };
1568
1570
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1523,7 +1523,7 @@ var platformIconMap = {
1523
1523
  yelp: "cib/yelp",
1524
1524
  spotify: "cib/spotify",
1525
1525
  apple: "cib/apple",
1526
- x: "line-md/twitter-x",
1526
+ x: "line-md/twitter-x-alt",
1527
1527
  github: "cib/github",
1528
1528
  snapchat: "cib/snapchat",
1529
1529
  discord: "cib/discord",
@@ -1542,6 +1542,8 @@ var platformIconMap = {
1542
1542
  npmjs: "simple-icons/npm",
1543
1543
  crates: "cib/rust",
1544
1544
  rubygems: "cib/rubygems",
1545
+ behance: "cib/behance",
1546
+ dribbble: "cib/dribbble",
1545
1547
  unknown: "icon-park-solid/circular-connection"
1546
1548
  };
1547
1549
  var SocialLinkIcon = React.forwardRef(
@@ -1472,7 +1472,7 @@ var platformIconMap = {
1472
1472
  yelp: "cib/yelp",
1473
1473
  spotify: "cib/spotify",
1474
1474
  apple: "cib/apple",
1475
- x: "line-md/twitter-x",
1475
+ x: "line-md/twitter-x-alt",
1476
1476
  github: "cib/github",
1477
1477
  snapchat: "cib/snapchat",
1478
1478
  discord: "cib/discord",
@@ -1491,6 +1491,8 @@ var platformIconMap = {
1491
1491
  npmjs: "simple-icons/npm",
1492
1492
  crates: "cib/rust",
1493
1493
  rubygems: "cib/rubygems",
1494
+ behance: "cib/behance",
1495
+ dribbble: "cib/dribbble",
1494
1496
  unknown: "icon-park-solid/circular-connection"
1495
1497
  };
1496
1498
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1451,7 +1451,7 @@ var platformIconMap = {
1451
1451
  yelp: "cib/yelp",
1452
1452
  spotify: "cib/spotify",
1453
1453
  apple: "cib/apple",
1454
- x: "line-md/twitter-x",
1454
+ x: "line-md/twitter-x-alt",
1455
1455
  github: "cib/github",
1456
1456
  snapchat: "cib/snapchat",
1457
1457
  discord: "cib/discord",
@@ -1470,6 +1470,8 @@ var platformIconMap = {
1470
1470
  npmjs: "simple-icons/npm",
1471
1471
  crates: "cib/rust",
1472
1472
  rubygems: "cib/rubygems",
1473
+ behance: "cib/behance",
1474
+ dribbble: "cib/dribbble",
1473
1475
  unknown: "icon-park-solid/circular-connection"
1474
1476
  };
1475
1477
  var SocialLinkIcon = React.forwardRef(
@@ -1215,7 +1215,7 @@ var platformIconMap = {
1215
1215
  yelp: "cib/yelp",
1216
1216
  spotify: "cib/spotify",
1217
1217
  apple: "cib/apple",
1218
- x: "line-md/twitter-x",
1218
+ x: "line-md/twitter-x-alt",
1219
1219
  github: "cib/github",
1220
1220
  snapchat: "cib/snapchat",
1221
1221
  discord: "cib/discord",
@@ -1234,6 +1234,8 @@ var platformIconMap = {
1234
1234
  npmjs: "simple-icons/npm",
1235
1235
  crates: "cib/rust",
1236
1236
  rubygems: "cib/rubygems",
1237
+ behance: "cib/behance",
1238
+ dribbble: "cib/dribbble",
1237
1239
  unknown: "icon-park-solid/circular-connection"
1238
1240
  };
1239
1241
  var SocialLinkIcon = React__namespace.forwardRef(
@@ -1193,7 +1193,7 @@ var platformIconMap = {
1193
1193
  yelp: "cib/yelp",
1194
1194
  spotify: "cib/spotify",
1195
1195
  apple: "cib/apple",
1196
- x: "line-md/twitter-x",
1196
+ x: "line-md/twitter-x-alt",
1197
1197
  github: "cib/github",
1198
1198
  snapchat: "cib/snapchat",
1199
1199
  discord: "cib/discord",
@@ -1212,6 +1212,8 @@ var platformIconMap = {
1212
1212
  npmjs: "simple-icons/npm",
1213
1213
  crates: "cib/rust",
1214
1214
  rubygems: "cib/rubygems",
1215
+ behance: "cib/behance",
1216
+ dribbble: "cib/dribbble",
1215
1217
  unknown: "icon-park-solid/circular-connection"
1216
1218
  };
1217
1219
  var SocialLinkIcon = React.forwardRef(