@opensite/ui 1.5.2 → 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.
- package/dist/about-location-info-hero.cjs +26 -48
- package/dist/about-location-info-hero.d.cts +1 -1
- package/dist/about-location-info-hero.d.ts +1 -1
- package/dist/about-location-info-hero.js +26 -48
- package/dist/components.cjs +335 -132
- package/dist/components.js +335 -132
- package/dist/footer-animated-social.cjs +10 -1
- package/dist/footer-animated-social.js +10 -1
- package/dist/footer-background-card.cjs +239 -69
- package/dist/footer-background-card.d.cts +9 -1
- package/dist/footer-background-card.d.ts +9 -1
- package/dist/footer-background-card.js +240 -70
- package/dist/footer-nav-social.cjs +156 -61
- package/dist/footer-nav-social.d.cts +9 -1
- package/dist/footer-nav-social.d.ts +9 -1
- package/dist/footer-nav-social.js +156 -61
- package/dist/footer-simple-centered.cjs +1 -1
- package/dist/footer-simple-centered.d.cts +1 -1
- package/dist/footer-simple-centered.d.ts +1 -1
- package/dist/footer-simple-centered.js +1 -1
- package/dist/hero-centered-screenshot.cjs +46 -59
- package/dist/hero-centered-screenshot.d.cts +1 -1
- package/dist/hero-centered-screenshot.d.ts +1 -1
- package/dist/hero-centered-screenshot.js +46 -59
- package/dist/index.cjs +335 -132
- package/dist/index.js +335 -132
- package/dist/registry.cjs +407 -165
- package/dist/registry.js +407 -165
- package/package.json +1 -1
|
@@ -32,32 +32,6 @@ var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
|
32
32
|
function cn(...inputs) {
|
|
33
33
|
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
34
34
|
}
|
|
35
|
-
function getTextColor(parentBg, variant = "default", options) {
|
|
36
|
-
const isDark = parentBg === "dark" || parentBg === "secondary" || parentBg === "primary";
|
|
37
|
-
if (isDark) {
|
|
38
|
-
switch (variant) {
|
|
39
|
-
case "default":
|
|
40
|
-
return "text-foreground";
|
|
41
|
-
case "muted":
|
|
42
|
-
return "text-foreground/80";
|
|
43
|
-
case "subtle":
|
|
44
|
-
return "text-foreground/60";
|
|
45
|
-
case "accent":
|
|
46
|
-
return "text-accent-foreground";
|
|
47
|
-
}
|
|
48
|
-
} else {
|
|
49
|
-
switch (variant) {
|
|
50
|
-
case "default":
|
|
51
|
-
return "text-foreground";
|
|
52
|
-
case "muted":
|
|
53
|
-
return "text-muted-foreground";
|
|
54
|
-
case "subtle":
|
|
55
|
-
return "text-muted-foreground/70";
|
|
56
|
-
case "accent":
|
|
57
|
-
return "text-primary";
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
35
|
function normalizePhoneNumber(input) {
|
|
62
36
|
const trimmed = input.trim();
|
|
63
37
|
if (trimmed.toLowerCase().startsWith("tel:")) {
|
|
@@ -1095,13 +1069,13 @@ function AboutLocationInfoHero({
|
|
|
1095
1069
|
imagesClassName,
|
|
1096
1070
|
contentPosition = "left",
|
|
1097
1071
|
mobileStackOrder = "content-first",
|
|
1098
|
-
accentColor = "hsl(var(--
|
|
1072
|
+
accentColor = "hsl(var(--muted))",
|
|
1099
1073
|
background,
|
|
1100
|
-
spacing,
|
|
1101
1074
|
pattern,
|
|
1102
1075
|
patternOpacity,
|
|
1103
1076
|
className,
|
|
1104
|
-
containerClassName,
|
|
1077
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
1078
|
+
spacing = "py-6 md:py-32",
|
|
1105
1079
|
optixFlowConfig
|
|
1106
1080
|
}) {
|
|
1107
1081
|
const isSingleImage = (images?.length ?? 0) <= 1;
|
|
@@ -1122,21 +1096,27 @@ function AboutLocationInfoHero({
|
|
|
1122
1096
|
const hoursSectionsContent = React.useMemo(() => {
|
|
1123
1097
|
if (hoursSectionsSlot) return hoursSectionsSlot;
|
|
1124
1098
|
if (!hoursSections || hoursSections.length === 0) return null;
|
|
1125
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-
|
|
1099
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-6 md:space-y-12", hoursSectionsClassName), children: hoursSections.map((section, sectionIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
1126
1100
|
section.label && (typeof section.label === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1127
1101
|
"h3",
|
|
1128
1102
|
{
|
|
1129
|
-
className: "mb-
|
|
1103
|
+
className: "mb-4 text-lg font-semibold ",
|
|
1130
1104
|
style: { color: accentColor },
|
|
1131
1105
|
children: section.label
|
|
1132
1106
|
}
|
|
1133
1107
|
) : section.label),
|
|
1134
|
-
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-x-
|
|
1135
|
-
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
1136
|
-
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { children: item.time }) : item.time)
|
|
1108
|
+
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-x-4 gap-y-2", children: section.hours.map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
1109
|
+
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60 tracking-wide", children: item.day }) : item.day),
|
|
1110
|
+
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60", children: item.time }) : item.time)
|
|
1137
1111
|
] }, itemIndex)) })
|
|
1138
1112
|
] }, sectionIndex)) });
|
|
1139
|
-
}, [
|
|
1113
|
+
}, [
|
|
1114
|
+
hoursSectionsSlot,
|
|
1115
|
+
hoursSections,
|
|
1116
|
+
hoursSectionsClassName,
|
|
1117
|
+
accentColor,
|
|
1118
|
+
background
|
|
1119
|
+
]);
|
|
1140
1120
|
const imagesContent = React.useMemo(() => {
|
|
1141
1121
|
if (imagesSlot) return imagesSlot;
|
|
1142
1122
|
if (!images || images.length === 0) return null;
|
|
@@ -1145,7 +1125,7 @@ function AboutLocationInfoHero({
|
|
|
1145
1125
|
"div",
|
|
1146
1126
|
{
|
|
1147
1127
|
className: cn(
|
|
1148
|
-
"relative aspect-
|
|
1128
|
+
"relative aspect-4/3 w-full max-w-lg overflow-hidden rounded-lg shadow-2xl",
|
|
1149
1129
|
imagesClassName
|
|
1150
1130
|
),
|
|
1151
1131
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1168,7 +1148,7 @@ function AboutLocationInfoHero({
|
|
|
1168
1148
|
imagesClassName
|
|
1169
1149
|
),
|
|
1170
1150
|
children: [
|
|
1171
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute left-0 top-0 z-10 aspect-
|
|
1151
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute left-0 top-0 z-10 aspect-4/3 w-[70%] overflow-hidden rounded-lg shadow-2xl md:w-[65%]", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1172
1152
|
img.Img,
|
|
1173
1153
|
{
|
|
1174
1154
|
src: images[0]?.src || imagePlaceholders[5],
|
|
@@ -1177,7 +1157,7 @@ function AboutLocationInfoHero({
|
|
|
1177
1157
|
optixFlowConfig
|
|
1178
1158
|
}
|
|
1179
1159
|
) }),
|
|
1180
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-
|
|
1160
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-3/4 w-[55%] overflow-hidden rounded-lg shadow-2xl md:w-[50%]", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1181
1161
|
img.Img,
|
|
1182
1162
|
{
|
|
1183
1163
|
src: images[1]?.src || imagePlaceholders[6],
|
|
@@ -1197,11 +1177,9 @@ function AboutLocationInfoHero({
|
|
|
1197
1177
|
spacing,
|
|
1198
1178
|
pattern,
|
|
1199
1179
|
patternOpacity,
|
|
1200
|
-
className: cn(
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
),
|
|
1204
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("container relative", containerClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1180
|
+
className: cn("relative w-full overflow-hidden", className),
|
|
1181
|
+
containerClassName,
|
|
1182
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(" relative"), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1205
1183
|
"div",
|
|
1206
1184
|
{
|
|
1207
1185
|
className: cn(
|
|
@@ -1222,16 +1200,16 @@ function AboutLocationInfoHero({
|
|
|
1222
1200
|
}
|
|
1223
1201
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headlineClassName, children: headline })),
|
|
1224
1202
|
actionsContent,
|
|
1225
|
-
address || phone ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-
|
|
1203
|
+
address || phone ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
1226
1204
|
address ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1227
1205
|
"div",
|
|
1228
1206
|
{
|
|
1229
1207
|
className: cn(
|
|
1230
|
-
"flex items-center gap-3 text-
|
|
1208
|
+
"flex items-center gap-3 text-md",
|
|
1231
1209
|
addressClassName
|
|
1232
1210
|
),
|
|
1233
1211
|
children: [
|
|
1234
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size:
|
|
1212
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size: 18 }),
|
|
1235
1213
|
addressHref ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1236
1214
|
Pressable,
|
|
1237
1215
|
{
|
|
@@ -1247,11 +1225,11 @@ function AboutLocationInfoHero({
|
|
|
1247
1225
|
"div",
|
|
1248
1226
|
{
|
|
1249
1227
|
className: cn(
|
|
1250
|
-
"flex items-center gap-3 text-
|
|
1228
|
+
"flex items-center gap-3 text-md",
|
|
1251
1229
|
phoneClassName
|
|
1252
1230
|
),
|
|
1253
1231
|
children: [
|
|
1254
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/phone", size:
|
|
1232
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/phone", size: 18 }),
|
|
1255
1233
|
phoneHref ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1256
1234
|
Pressable,
|
|
1257
1235
|
{
|
|
@@ -144,6 +144,6 @@ interface AboutLocationInfoHeroProps {
|
|
|
144
144
|
* hours breakdown, and a dual-image layout. Great for showcasing location-focused
|
|
145
145
|
* service hubs or flagship office pages.
|
|
146
146
|
*/
|
|
147
|
-
declare function AboutLocationInfoHero({ headline, headlineClassName, address, addressHref, addressClassName, phone, phoneHref, phoneClassName, actions, actionsSlot, actionsClassName, hoursSections, hoursSectionsSlot, hoursSectionsClassName, images, imagesSlot, imagesClassName, contentPosition, mobileStackOrder, accentColor, background,
|
|
147
|
+
declare function AboutLocationInfoHero({ headline, headlineClassName, address, addressHref, addressClassName, phone, phoneHref, phoneClassName, actions, actionsSlot, actionsClassName, hoursSections, hoursSectionsSlot, hoursSectionsClassName, images, imagesSlot, imagesClassName, contentPosition, mobileStackOrder, accentColor, background, pattern, patternOpacity, className, containerClassName, spacing, optixFlowConfig, }: AboutLocationInfoHeroProps): React.JSX.Element;
|
|
148
148
|
|
|
149
149
|
export { AboutLocationInfoHero, type AboutLocationInfoHeroProps };
|
|
@@ -144,6 +144,6 @@ interface AboutLocationInfoHeroProps {
|
|
|
144
144
|
* hours breakdown, and a dual-image layout. Great for showcasing location-focused
|
|
145
145
|
* service hubs or flagship office pages.
|
|
146
146
|
*/
|
|
147
|
-
declare function AboutLocationInfoHero({ headline, headlineClassName, address, addressHref, addressClassName, phone, phoneHref, phoneClassName, actions, actionsSlot, actionsClassName, hoursSections, hoursSectionsSlot, hoursSectionsClassName, images, imagesSlot, imagesClassName, contentPosition, mobileStackOrder, accentColor, background,
|
|
147
|
+
declare function AboutLocationInfoHero({ headline, headlineClassName, address, addressHref, addressClassName, phone, phoneHref, phoneClassName, actions, actionsSlot, actionsClassName, hoursSections, hoursSectionsSlot, hoursSectionsClassName, images, imagesSlot, imagesClassName, contentPosition, mobileStackOrder, accentColor, background, pattern, patternOpacity, className, containerClassName, spacing, optixFlowConfig, }: AboutLocationInfoHeroProps): React.JSX.Element;
|
|
148
148
|
|
|
149
149
|
export { AboutLocationInfoHero, type AboutLocationInfoHeroProps };
|
|
@@ -11,32 +11,6 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
11
11
|
function cn(...inputs) {
|
|
12
12
|
return twMerge(clsx(inputs));
|
|
13
13
|
}
|
|
14
|
-
function getTextColor(parentBg, variant = "default", options) {
|
|
15
|
-
const isDark = parentBg === "dark" || parentBg === "secondary" || parentBg === "primary";
|
|
16
|
-
if (isDark) {
|
|
17
|
-
switch (variant) {
|
|
18
|
-
case "default":
|
|
19
|
-
return "text-foreground";
|
|
20
|
-
case "muted":
|
|
21
|
-
return "text-foreground/80";
|
|
22
|
-
case "subtle":
|
|
23
|
-
return "text-foreground/60";
|
|
24
|
-
case "accent":
|
|
25
|
-
return "text-accent-foreground";
|
|
26
|
-
}
|
|
27
|
-
} else {
|
|
28
|
-
switch (variant) {
|
|
29
|
-
case "default":
|
|
30
|
-
return "text-foreground";
|
|
31
|
-
case "muted":
|
|
32
|
-
return "text-muted-foreground";
|
|
33
|
-
case "subtle":
|
|
34
|
-
return "text-muted-foreground/70";
|
|
35
|
-
case "accent":
|
|
36
|
-
return "text-primary";
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
14
|
function normalizePhoneNumber(input) {
|
|
41
15
|
const trimmed = input.trim();
|
|
42
16
|
if (trimmed.toLowerCase().startsWith("tel:")) {
|
|
@@ -1074,13 +1048,13 @@ function AboutLocationInfoHero({
|
|
|
1074
1048
|
imagesClassName,
|
|
1075
1049
|
contentPosition = "left",
|
|
1076
1050
|
mobileStackOrder = "content-first",
|
|
1077
|
-
accentColor = "hsl(var(--
|
|
1051
|
+
accentColor = "hsl(var(--muted))",
|
|
1078
1052
|
background,
|
|
1079
|
-
spacing,
|
|
1080
1053
|
pattern,
|
|
1081
1054
|
patternOpacity,
|
|
1082
1055
|
className,
|
|
1083
|
-
containerClassName,
|
|
1056
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
1057
|
+
spacing = "py-6 md:py-32",
|
|
1084
1058
|
optixFlowConfig
|
|
1085
1059
|
}) {
|
|
1086
1060
|
const isSingleImage = (images?.length ?? 0) <= 1;
|
|
@@ -1101,21 +1075,27 @@ function AboutLocationInfoHero({
|
|
|
1101
1075
|
const hoursSectionsContent = useMemo(() => {
|
|
1102
1076
|
if (hoursSectionsSlot) return hoursSectionsSlot;
|
|
1103
1077
|
if (!hoursSections || hoursSections.length === 0) return null;
|
|
1104
|
-
return /* @__PURE__ */ jsx("div", { className: cn("space-y-
|
|
1078
|
+
return /* @__PURE__ */ jsx("div", { className: cn("space-y-6 md:space-y-12", hoursSectionsClassName), children: hoursSections.map((section, sectionIndex) => /* @__PURE__ */ jsxs("div", { children: [
|
|
1105
1079
|
section.label && (typeof section.label === "string" ? /* @__PURE__ */ jsx(
|
|
1106
1080
|
"h3",
|
|
1107
1081
|
{
|
|
1108
|
-
className: "mb-
|
|
1082
|
+
className: "mb-4 text-lg font-semibold ",
|
|
1109
1083
|
style: { color: accentColor },
|
|
1110
1084
|
children: section.label
|
|
1111
1085
|
}
|
|
1112
1086
|
) : section.label),
|
|
1113
|
-
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-x-
|
|
1114
|
-
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsx("span", { className:
|
|
1115
|
-
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsx("span", { children: item.time }) : item.time)
|
|
1087
|
+
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-x-4 gap-y-2", children: section.hours.map((item, itemIndex) => /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
|
|
1088
|
+
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60 tracking-wide", children: item.day }) : item.day),
|
|
1089
|
+
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60", children: item.time }) : item.time)
|
|
1116
1090
|
] }, itemIndex)) })
|
|
1117
1091
|
] }, sectionIndex)) });
|
|
1118
|
-
}, [
|
|
1092
|
+
}, [
|
|
1093
|
+
hoursSectionsSlot,
|
|
1094
|
+
hoursSections,
|
|
1095
|
+
hoursSectionsClassName,
|
|
1096
|
+
accentColor,
|
|
1097
|
+
background
|
|
1098
|
+
]);
|
|
1119
1099
|
const imagesContent = useMemo(() => {
|
|
1120
1100
|
if (imagesSlot) return imagesSlot;
|
|
1121
1101
|
if (!images || images.length === 0) return null;
|
|
@@ -1124,7 +1104,7 @@ function AboutLocationInfoHero({
|
|
|
1124
1104
|
"div",
|
|
1125
1105
|
{
|
|
1126
1106
|
className: cn(
|
|
1127
|
-
"relative aspect-
|
|
1107
|
+
"relative aspect-4/3 w-full max-w-lg overflow-hidden rounded-lg shadow-2xl",
|
|
1128
1108
|
imagesClassName
|
|
1129
1109
|
),
|
|
1130
1110
|
children: /* @__PURE__ */ jsx(
|
|
@@ -1147,7 +1127,7 @@ function AboutLocationInfoHero({
|
|
|
1147
1127
|
imagesClassName
|
|
1148
1128
|
),
|
|
1149
1129
|
children: [
|
|
1150
|
-
/* @__PURE__ */ jsx("div", { className: "absolute left-0 top-0 z-10 aspect-
|
|
1130
|
+
/* @__PURE__ */ jsx("div", { className: "absolute left-0 top-0 z-10 aspect-4/3 w-[70%] overflow-hidden rounded-lg shadow-2xl md:w-[65%]", children: /* @__PURE__ */ jsx(
|
|
1151
1131
|
Img,
|
|
1152
1132
|
{
|
|
1153
1133
|
src: images[0]?.src || imagePlaceholders[5],
|
|
@@ -1156,7 +1136,7 @@ function AboutLocationInfoHero({
|
|
|
1156
1136
|
optixFlowConfig
|
|
1157
1137
|
}
|
|
1158
1138
|
) }),
|
|
1159
|
-
/* @__PURE__ */ jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-
|
|
1139
|
+
/* @__PURE__ */ jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-3/4 w-[55%] overflow-hidden rounded-lg shadow-2xl md:w-[50%]", children: /* @__PURE__ */ jsx(
|
|
1160
1140
|
Img,
|
|
1161
1141
|
{
|
|
1162
1142
|
src: images[1]?.src || imagePlaceholders[6],
|
|
@@ -1176,11 +1156,9 @@ function AboutLocationInfoHero({
|
|
|
1176
1156
|
spacing,
|
|
1177
1157
|
pattern,
|
|
1178
1158
|
patternOpacity,
|
|
1179
|
-
className: cn(
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
),
|
|
1183
|
-
children: /* @__PURE__ */ jsx("div", { className: cn("container relative", containerClassName), children: /* @__PURE__ */ jsxs(
|
|
1159
|
+
className: cn("relative w-full overflow-hidden", className),
|
|
1160
|
+
containerClassName,
|
|
1161
|
+
children: /* @__PURE__ */ jsx("div", { className: cn(" relative"), children: /* @__PURE__ */ jsxs(
|
|
1184
1162
|
"div",
|
|
1185
1163
|
{
|
|
1186
1164
|
className: cn(
|
|
@@ -1201,16 +1179,16 @@ function AboutLocationInfoHero({
|
|
|
1201
1179
|
}
|
|
1202
1180
|
) : /* @__PURE__ */ jsx("div", { className: headlineClassName, children: headline })),
|
|
1203
1181
|
actionsContent,
|
|
1204
|
-
address || phone ? /* @__PURE__ */ jsxs("div", { className: "space-y-
|
|
1182
|
+
address || phone ? /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
1205
1183
|
address ? /* @__PURE__ */ jsxs(
|
|
1206
1184
|
"div",
|
|
1207
1185
|
{
|
|
1208
1186
|
className: cn(
|
|
1209
|
-
"flex items-center gap-3 text-
|
|
1187
|
+
"flex items-center gap-3 text-md",
|
|
1210
1188
|
addressClassName
|
|
1211
1189
|
),
|
|
1212
1190
|
children: [
|
|
1213
|
-
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size:
|
|
1191
|
+
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size: 18 }),
|
|
1214
1192
|
addressHref ? /* @__PURE__ */ jsx(
|
|
1215
1193
|
Pressable,
|
|
1216
1194
|
{
|
|
@@ -1226,11 +1204,11 @@ function AboutLocationInfoHero({
|
|
|
1226
1204
|
"div",
|
|
1227
1205
|
{
|
|
1228
1206
|
className: cn(
|
|
1229
|
-
"flex items-center gap-3 text-
|
|
1207
|
+
"flex items-center gap-3 text-md",
|
|
1230
1208
|
phoneClassName
|
|
1231
1209
|
),
|
|
1232
1210
|
children: [
|
|
1233
|
-
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/phone", size:
|
|
1211
|
+
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/phone", size: 18 }),
|
|
1234
1212
|
phoneHref ? /* @__PURE__ */ jsx(
|
|
1235
1213
|
Pressable,
|
|
1236
1214
|
{
|