sanity-plugin-seofields 1.4.1 → 1.5.0

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 (57) hide show
  1. package/README.md +1 -1
  2. package/dist/SeoHealthDashboard-3VBITMWT.cjs +10 -0
  3. package/dist/SeoHealthDashboard-3VBITMWT.cjs.map +1 -0
  4. package/dist/SeoHealthDashboard-BNJBRQVN.js +4 -0
  5. package/dist/SeoHealthDashboard-BNJBRQVN.js.map +1 -0
  6. package/dist/SeoHealthTool-4P6JST5S.cjs +14 -0
  7. package/dist/SeoHealthTool-4P6JST5S.cjs.map +1 -0
  8. package/dist/SeoHealthTool-MQBE5YGN.js +12 -0
  9. package/dist/SeoHealthTool-MQBE5YGN.js.map +1 -0
  10. package/dist/SeoPreview-G3LPA7GV.js +148 -0
  11. package/dist/SeoPreview-G3LPA7GV.js.map +1 -0
  12. package/dist/SeoPreview-Y3CFDVBR.cjs +154 -0
  13. package/dist/SeoPreview-Y3CFDVBR.cjs.map +1 -0
  14. package/dist/chunk-25JLWVEU.js +472 -0
  15. package/dist/chunk-25JLWVEU.js.map +1 -0
  16. package/dist/chunk-2NMEKWO5.js +35 -0
  17. package/dist/chunk-2NMEKWO5.js.map +1 -0
  18. package/dist/chunk-527WXITP.js +428 -0
  19. package/dist/chunk-527WXITP.js.map +1 -0
  20. package/dist/chunk-6CYMVS3O.js +1245 -0
  21. package/dist/chunk-6CYMVS3O.js.map +1 -0
  22. package/dist/chunk-D2GWRRK5.cjs +1293 -0
  23. package/dist/chunk-D2GWRRK5.cjs.map +1 -0
  24. package/dist/chunk-DYVCCQHT.cjs +1400 -0
  25. package/dist/chunk-DYVCCQHT.cjs.map +1 -0
  26. package/dist/chunk-IFDLKZET.cjs +485 -0
  27. package/dist/chunk-IFDLKZET.cjs.map +1 -0
  28. package/dist/chunk-L3L3FSPJ.cjs +478 -0
  29. package/dist/chunk-L3L3FSPJ.cjs.map +1 -0
  30. package/dist/chunk-S367Y35J.cjs +39 -0
  31. package/dist/chunk-S367Y35J.cjs.map +1 -0
  32. package/dist/chunk-WUIZN7VI.js +1394 -0
  33. package/dist/chunk-WUIZN7VI.js.map +1 -0
  34. package/dist/cli.js +67 -0
  35. package/dist/define-cli.cjs +12 -0
  36. package/dist/define-cli.cjs.map +1 -0
  37. package/dist/define-cli.d.cts +42 -0
  38. package/dist/define-cli.d.ts +42 -0
  39. package/dist/define-cli.js +10 -0
  40. package/dist/define-cli.js.map +1 -0
  41. package/dist/index.cjs +154 -2365
  42. package/dist/index.cjs.map +1 -1
  43. package/dist/index.js +109 -2303
  44. package/dist/index.js.map +1 -1
  45. package/dist/next.cjs +235 -1591
  46. package/dist/next.cjs.map +1 -1
  47. package/dist/next.js +7 -1482
  48. package/dist/next.js.map +1 -1
  49. package/dist/schema/next.cjs +200 -1542
  50. package/dist/schema/next.cjs.map +1 -1
  51. package/dist/schema/next.js +4 -1475
  52. package/dist/schema/next.js.map +1 -1
  53. package/dist/schema.cjs +252 -1514
  54. package/dist/schema.cjs.map +1 -1
  55. package/dist/schema.js +58 -1391
  56. package/dist/schema.js.map +1 -1
  57. package/package.json +21 -5
@@ -1,1476 +1,5 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
- var __hasOwnProp = Object.prototype.hasOwnProperty;
4
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
- var __spreadValues = (a, b) => {
7
- for (var prop in b || (b = {}))
8
- if (__hasOwnProp.call(b, prop))
9
- __defNormalProp(a, prop, b[prop]);
10
- if (__getOwnPropSymbols)
11
- for (var prop of __getOwnPropSymbols(b)) {
12
- if (__propIsEnum.call(b, prop))
13
- __defNormalProp(a, prop, b[prop]);
14
- }
15
- return a;
16
- };
17
-
18
- // src/schema/generator.ts
19
- import { defineField, defineType } from "sanity";
20
- var SANITY_INTERNAL_KEYS = /* @__PURE__ */ new Set([
21
- "_key",
22
- "_type",
23
- "_ref",
24
- "_id",
25
- "_rev",
26
- "_createdAt",
27
- "_updatedAt"
28
- ]);
29
- function buildNestedJsonLd(data, fieldDefs, jsonLdType) {
30
- var _a;
31
- const result = jsonLdType ? { "@type": jsonLdType } : {};
32
- for (const field of fieldDefs) {
33
- const value = data[field.name];
34
- if (value === void 0 || value === null || value === "") continue;
35
- const key = (_a = field.jsonLdKey) != null ? _a : field.name;
36
- if (field.type === "object" && field.fields && typeof value === "object" && !Array.isArray(value)) {
37
- const nested = buildNestedJsonLd(
38
- value,
39
- field.fields,
40
- field.jsonLdType
41
- );
42
- const minKeys = field.jsonLdType ? 1 : 0;
43
- if (Object.keys(nested).length > minKeys) {
44
- result[key] = nested;
45
- }
46
- } else if (field.type === "array" && Array.isArray(value)) {
47
- if (field.fields && field.jsonLdType) {
48
- const items = value.filter(
49
- (item) => typeof item === "object" && item !== null
50
- ).map((item) => buildNestedJsonLd(item, field.fields, field.jsonLdType));
51
- if (items.length) result[key] = items;
52
- } else if (value.length) {
53
- result[key] = value.filter((v) => v !== void 0 && v !== null && v !== "");
54
- }
55
- } else if (!SANITY_INTERNAL_KEYS.has(field.name)) {
56
- result[key] = value;
57
- }
58
- }
59
- return result;
60
- }
61
- function buildGenericJsonLd(schemaType, data, fieldDefs, requiredFields = []) {
62
- if (!data) return null;
63
- for (const req of requiredFields) {
64
- if (!data[req]) return null;
65
- }
66
- const body = buildNestedJsonLd(data, fieldDefs);
67
- return __spreadValues({
68
- "@context": "https://schema.org",
69
- "@type": schemaType
70
- }, body);
71
- }
72
-
73
- // src/schema/aggregateRating/schema.ts
74
- var aggregateRatingFields = [
75
- {
76
- name: "ratingValue",
77
- title: "Rating Value",
78
- type: "string",
79
- description: 'The average rating value, e.g. "4.5".',
80
- required: {
81
- key: "ratingValueRequired",
82
- message: "Rating value is required for Schema.org."
83
- }
84
- },
85
- {
86
- name: "reviewCount",
87
- title: "Review Count",
88
- type: "string",
89
- description: 'The total number of reviews, e.g. "120".'
90
- }
91
- ];
92
-
93
- // src/schema/article/schema.ts
94
- var articleFields = [
95
- {
96
- name: "headline",
97
- title: "Headline",
98
- type: "string",
99
- required: { key: "headlineRequired", message: "Headline is required for Schema.org Article." }
100
- },
101
- {
102
- name: "description",
103
- title: "Description",
104
- type: "text",
105
- rows: 3
106
- },
107
- {
108
- name: "image",
109
- title: "Image",
110
- type: "url",
111
- description: "URL of the article image."
112
- },
113
- {
114
- name: "author",
115
- title: "Author",
116
- type: "object",
117
- jsonLdType: "Person",
118
- fields: [
119
- {
120
- name: "name",
121
- title: "Author Name",
122
- type: "string"
123
- }
124
- ]
125
- },
126
- {
127
- name: "publisher",
128
- title: "Publisher",
129
- type: "object",
130
- jsonLdType: "Organization",
131
- fields: [
132
- {
133
- name: "name",
134
- title: "Publisher Name",
135
- type: "string"
136
- },
137
- {
138
- name: "logo",
139
- title: "Publisher Logo",
140
- type: "object",
141
- jsonLdType: "ImageObject",
142
- fields: [
143
- {
144
- name: "url",
145
- title: "Logo URL",
146
- type: "url"
147
- }
148
- ]
149
- }
150
- ]
151
- },
152
- {
153
- name: "datePublished",
154
- title: "Date Published",
155
- type: "date"
156
- }
157
- ];
158
-
159
- // src/schema/blogPosting/schema.ts
160
- var blogPostingFields = [
161
- {
162
- name: "headline",
163
- title: "Headline",
164
- type: "string",
165
- required: {
166
- key: "headlineRequired",
167
- message: "Headline is required for Schema.org BlogPosting."
168
- }
169
- },
170
- {
171
- name: "description",
172
- title: "Description",
173
- type: "text",
174
- rows: 3
175
- },
176
- {
177
- name: "author",
178
- title: "Author",
179
- type: "object",
180
- jsonLdType: "Person",
181
- fields: [
182
- {
183
- name: "name",
184
- title: "Author Name",
185
- type: "string"
186
- }
187
- ]
188
- },
189
- {
190
- name: "datePublished",
191
- title: "Date Published",
192
- type: "date"
193
- },
194
- {
195
- name: "mainEntityOfPage",
196
- title: "Main Entity of Page",
197
- type: "object",
198
- jsonLdType: "WebPage",
199
- fields: [
200
- {
201
- name: "id",
202
- title: "Page URL",
203
- type: "url",
204
- jsonLdKey: "@id"
205
- }
206
- ]
207
- }
208
- ];
209
-
210
- // src/schema/brand/schema.ts
211
- var brandFields = [
212
- {
213
- name: "name",
214
- title: "Brand Name",
215
- type: "string",
216
- description: "The name of the brand.",
217
- required: { key: "nameRequired", message: "Brand name is required for Schema.org." }
218
- }
219
- ];
220
-
221
- // src/schema/breadcrumbList/schema.ts
222
- var breadcrumbListFields = [
223
- {
224
- name: "itemListElement",
225
- title: "Breadcrumb Items",
226
- type: "array",
227
- jsonLdType: "ListItem",
228
- fields: [
229
- {
230
- name: "position",
231
- title: "Position",
232
- type: "number",
233
- required: { key: "positionRequired", message: "Position is required." }
234
- },
235
- {
236
- name: "name",
237
- title: "Label",
238
- type: "string",
239
- required: { key: "nameRequired", message: "Label is required." }
240
- },
241
- {
242
- name: "item",
243
- title: "URL",
244
- type: "url"
245
- }
246
- ]
247
- }
248
- ];
249
-
250
- // src/schema/contactPoint/schema.ts
251
- var contactPointFields = [
252
- {
253
- name: "contactType",
254
- title: "Contact Type",
255
- type: "string",
256
- description: 'The type of contact, e.g. "customer support", "sales".',
257
- required: { key: "contactTypeRequired", message: "Contact type is required for Schema.org." },
258
- initialValue: "customer support",
259
- options: [
260
- { title: "Customer Support", value: "customer support" },
261
- { title: "Sales", value: "sales" },
262
- { title: "Technical Support", value: "technical support" },
263
- { title: "Billing", value: "billing" },
264
- { title: "General Inquiry", value: "general inquiry" }
265
- ]
266
- },
267
- {
268
- name: "email",
269
- title: "Email",
270
- type: "string",
271
- description: "Contact email address."
272
- },
273
- {
274
- name: "telephone",
275
- title: "Telephone",
276
- type: "string",
277
- description: "Contact telephone number."
278
- },
279
- {
280
- name: "availableLanguage",
281
- title: "Available Languages",
282
- type: "array",
283
- of: [{ type: "string" }],
284
- description: 'Languages supported by this contact point, e.g. "English", "Spanish".',
285
- initialValue: ["English"]
286
- }
287
- ];
288
-
289
- // src/schema/course/schema.ts
290
- var courseFields = [
291
- {
292
- name: "name",
293
- title: "Course Name",
294
- type: "string",
295
- description: "The name of the course.",
296
- required: { key: "nameRequired", message: "Course name is required for Schema.org." }
297
- },
298
- {
299
- name: "description",
300
- title: "Description",
301
- type: "text",
302
- rows: 3,
303
- description: "A short description of the course."
304
- },
305
- {
306
- name: "provider",
307
- title: "Provider",
308
- type: "object",
309
- description: "The organization that provides this course.",
310
- jsonLdType: "Organization",
311
- fields: [
312
- {
313
- name: "name",
314
- title: "Provider Name",
315
- type: "string",
316
- description: "Name of the providing organization."
317
- },
318
- {
319
- name: "sameAs",
320
- title: "Provider URL",
321
- type: "url",
322
- description: "URL of the providing organization."
323
- }
324
- ]
325
- }
326
- ];
327
-
328
- // src/schema/event/schema.ts
329
- var eventFields = [
330
- {
331
- name: "name",
332
- title: "Event Name",
333
- type: "string",
334
- description: "The name of the event.",
335
- required: { key: "nameRequired", message: "Event name is required for Schema.org." }
336
- },
337
- {
338
- name: "startDate",
339
- title: "Start Date",
340
- type: "date",
341
- description: "The start date of the event."
342
- },
343
- {
344
- name: "location",
345
- title: "Location",
346
- type: "object",
347
- description: "The location where the event takes place.",
348
- jsonLdType: "Place",
349
- fields: [
350
- {
351
- name: "name",
352
- title: "Venue Name",
353
- type: "string",
354
- description: "Name of the venue or location."
355
- },
356
- {
357
- name: "address",
358
- title: "Address",
359
- type: "string",
360
- description: "Full address as a single string."
361
- }
362
- ]
363
- }
364
- ];
365
-
366
- // src/schema/faqPage/schema.ts
367
- var faqPageFields = [
368
- {
369
- name: "mainEntity",
370
- title: "FAQ Items",
371
- type: "array",
372
- jsonLdType: "Question",
373
- fields: [
374
- {
375
- name: "name",
376
- title: "Question",
377
- type: "string",
378
- required: { key: "questionRequired", message: "Question text is required." }
379
- },
380
- {
381
- name: "acceptedAnswer",
382
- title: "Accepted Answer",
383
- type: "object",
384
- jsonLdType: "Answer",
385
- fields: [
386
- {
387
- name: "text",
388
- title: "Answer Text",
389
- type: "text",
390
- rows: 3
391
- }
392
- ]
393
- }
394
- ]
395
- }
396
- ];
397
-
398
- // src/schema/howTo/schema.ts
399
- var howToFields = [
400
- {
401
- name: "name",
402
- title: "Name",
403
- type: "string",
404
- required: { key: "nameRequired", message: "Name is required for Schema.org HowTo." }
405
- },
406
- {
407
- name: "description",
408
- title: "Description",
409
- type: "text",
410
- rows: 3
411
- },
412
- {
413
- name: "step",
414
- title: "Steps",
415
- type: "array",
416
- jsonLdType: "HowToStep",
417
- fields: [
418
- {
419
- name: "name",
420
- title: "Step Name",
421
- type: "string",
422
- required: { key: "stepNameRequired", message: "Step name is required." }
423
- },
424
- {
425
- name: "text",
426
- title: "Step Description",
427
- type: "text",
428
- rows: 2
429
- }
430
- ]
431
- }
432
- ];
433
-
434
- // src/schema/imageObject/schema.ts
435
- var imageObjectFields = [
436
- {
437
- name: "url",
438
- title: "Image URL",
439
- type: "url",
440
- description: "The URL of the image.",
441
- required: { key: "urlRequired", message: "Image URL is required for Schema.org." }
442
- },
443
- {
444
- name: "width",
445
- title: "Width",
446
- type: "number",
447
- description: "Image width in pixels."
448
- },
449
- {
450
- name: "height",
451
- title: "Height",
452
- type: "number",
453
- description: "Image height in pixels."
454
- },
455
- {
456
- name: "caption",
457
- title: "Caption",
458
- type: "string",
459
- description: "Caption or alt text for the image."
460
- }
461
- ];
462
-
463
- // src/schema/localBusiness/schema.ts
464
- var localBusinessFields = [
465
- {
466
- name: "name",
467
- title: "Business Name",
468
- type: "string",
469
- description: "The official name of the business.",
470
- required: { key: "nameRequired", message: "Business name is required for Schema.org." }
471
- },
472
- {
473
- name: "image",
474
- title: "Image URL",
475
- type: "url",
476
- description: "URL to the business image."
477
- },
478
- {
479
- name: "telephone",
480
- title: "Telephone",
481
- type: "string",
482
- description: "The telephone number of the business."
483
- },
484
- {
485
- name: "address",
486
- title: "Address",
487
- type: "object",
488
- description: "The physical address of the business.",
489
- jsonLdType: "PostalAddress",
490
- fields: [
491
- {
492
- name: "streetAddress",
493
- title: "Street Address",
494
- type: "string"
495
- },
496
- {
497
- name: "addressLocality",
498
- title: "Locality",
499
- type: "string",
500
- description: "City or town."
501
- },
502
- {
503
- name: "addressCountry",
504
- title: "Country",
505
- type: "string",
506
- description: 'Country code, e.g. "US".'
507
- }
508
- ]
509
- }
510
- ];
511
-
512
- // src/schema/offer/schema.ts
513
- var offerFields = [
514
- {
515
- name: "price",
516
- title: "Price",
517
- type: "string",
518
- description: 'The price of the offer, e.g. "199.99".',
519
- required: { key: "priceRequired", message: "Price is required for Schema.org." }
520
- },
521
- {
522
- name: "priceCurrency",
523
- title: "Currency",
524
- type: "string",
525
- description: 'The currency of the price, e.g. "USD".',
526
- initialValue: "USD",
527
- options: [
528
- { title: "USD", value: "USD" },
529
- { title: "EUR", value: "EUR" },
530
- { title: "GBP", value: "GBP" },
531
- { title: "INR", value: "INR" },
532
- { title: "JPY", value: "JPY" },
533
- { title: "CAD", value: "CAD" },
534
- { title: "AUD", value: "AUD" }
535
- ]
536
- },
537
- {
538
- name: "availability",
539
- title: "Availability",
540
- type: "url",
541
- description: 'Schema.org availability URL, e.g. "https://schema.org/InStock".'
542
- },
543
- {
544
- name: "url",
545
- title: "Offer URL",
546
- type: "url",
547
- description: "URL of the offer page."
548
- }
549
- ];
550
-
551
- // src/schema/utils.ts
552
- function escapeJsonForScript(json) {
553
- return json.replace(/</g, "\\u003C").replace(/>/g, "\\u003E").replace(/&/g, "\\u0026").replace(/\u2028/g, "\\u2028").replace(/\u2029/g, "\\u2029");
554
- }
555
-
556
- // src/schema/organization/component.tsx
557
- import { jsx } from "react/jsx-runtime";
558
- function buildOrganizationJsonLd(data, imageUrlResolver) {
559
- var _a, _b, _c;
560
- if (!(data == null ? void 0 : data.name) || !(data == null ? void 0 : data.url)) return null;
561
- const jsonLd = {
562
- "@context": "https://schema.org",
563
- "@type": "Organization",
564
- name: data.name,
565
- url: data.url
566
- };
567
- const logoUrl = data.logoUrl || (data.logo && imageUrlResolver ? imageUrlResolver(data.logo) : void 0);
568
- if (logoUrl) jsonLd.logo = logoUrl;
569
- if (data.description) jsonLd.description = data.description;
570
- if ((_a = data.sameAs) == null ? void 0 : _a.length) jsonLd.sameAs = data.sameAs;
571
- if ((_b = data.contactPoint) == null ? void 0 : _b.contactType) {
572
- const cp = {
573
- "@type": "ContactPoint",
574
- contactType: data.contactPoint.contactType
575
- };
576
- if (data.contactPoint.email) cp.email = data.contactPoint.email;
577
- if ((_c = data.contactPoint.availableLanguage) == null ? void 0 : _c.length) {
578
- cp.availableLanguage = data.contactPoint.availableLanguage;
579
- }
580
- jsonLd.contactPoint = cp;
581
- }
582
- return jsonLd;
583
- }
584
- function OrganizationSchema({
585
- data,
586
- imageUrlResolver
587
- }) {
588
- const jsonLd = buildOrganizationJsonLd(data, imageUrlResolver);
589
- if (!jsonLd) return null;
590
- return /* @__PURE__ */ jsx(
591
- "script",
592
- {
593
- type: "application/ld+json",
594
- dangerouslySetInnerHTML: { __html: escapeJsonForScript(JSON.stringify(jsonLd)) }
595
- }
596
- );
597
- }
598
-
599
- // src/schema/person/schema.ts
600
- var personFields = [
601
- {
602
- name: "name",
603
- title: "Full Name",
604
- type: "string",
605
- description: "The full name of the person.",
606
- required: { key: "nameRequired", message: "Person name is required for Schema.org." }
607
- },
608
- {
609
- name: "jobTitle",
610
- title: "Job Title",
611
- type: "string",
612
- description: "The job title or role of the person."
613
- },
614
- {
615
- name: "url",
616
- title: "Profile URL",
617
- type: "url",
618
- description: "URL of the person's profile or personal website."
619
- },
620
- {
621
- name: "imageUrl",
622
- title: "Image URL",
623
- type: "url",
624
- description: "URL to a photo/image of this person.",
625
- jsonLdKey: "image"
626
- },
627
- {
628
- name: "sameAs",
629
- title: "Social / External Profiles",
630
- type: "array",
631
- of: [{ type: "url" }],
632
- description: "URLs of social media profiles and other authoritative pages (LinkedIn, GitHub, etc.)."
633
- },
634
- {
635
- name: "worksFor",
636
- title: "Works For",
637
- type: "object",
638
- description: "The organization this person works for.",
639
- jsonLdType: "Organization",
640
- fields: [
641
- {
642
- name: "name",
643
- title: "Organization Name",
644
- type: "string",
645
- description: "Name of the organization."
646
- }
647
- ]
648
- }
649
- ];
650
-
651
- // src/schema/place/schema.ts
652
- var placeFields = [
653
- {
654
- name: "name",
655
- title: "Place Name",
656
- type: "string",
657
- description: "The name of the place.",
658
- required: { key: "nameRequired", message: "Place name is required for Schema.org." }
659
- },
660
- {
661
- name: "address",
662
- title: "Address",
663
- type: "object",
664
- description: "The physical address of the place.",
665
- jsonLdType: "PostalAddress",
666
- fields: [
667
- {
668
- name: "addressLocality",
669
- title: "Locality",
670
- type: "string",
671
- description: "City or town."
672
- },
673
- {
674
- name: "addressCountry",
675
- title: "Country",
676
- type: "string",
677
- description: 'Country code, e.g. "US".'
678
- }
679
- ]
680
- }
681
- ];
682
-
683
- // src/schema/postalAddress/schema.ts
684
- var postalAddressFields = [
685
- {
686
- name: "streetAddress",
687
- title: "Street Address",
688
- type: "string",
689
- description: 'The street address, e.g. "123 Main St".'
690
- },
691
- {
692
- name: "addressLocality",
693
- title: "City / Locality",
694
- type: "string",
695
- description: 'The city or locality, e.g. "New York".'
696
- },
697
- {
698
- name: "postalCode",
699
- title: "Postal Code",
700
- type: "string",
701
- description: 'The postal or ZIP code, e.g. "10001".'
702
- },
703
- {
704
- name: "addressCountry",
705
- title: "Country",
706
- type: "string",
707
- description: 'The country code, e.g. "US".'
708
- }
709
- ];
710
-
711
- // src/schema/product/schema.ts
712
- var productFields = [
713
- {
714
- name: "name",
715
- title: "Product Name",
716
- type: "string",
717
- description: "The name of the product.",
718
- required: { key: "nameRequired", message: "Product name is required for Schema.org." }
719
- },
720
- {
721
- name: "imageUrl",
722
- title: "Image URL",
723
- type: "url",
724
- description: "URL to the product image.",
725
- jsonLdKey: "image"
726
- },
727
- {
728
- name: "description",
729
- title: "Description",
730
- type: "text",
731
- rows: 3,
732
- description: "A short description of the product."
733
- },
734
- {
735
- name: "brand",
736
- title: "Brand",
737
- type: "object",
738
- description: "The brand of the product.",
739
- jsonLdType: "Brand",
740
- fields: [
741
- {
742
- name: "name",
743
- title: "Brand Name",
744
- type: "string",
745
- description: "Name of the brand."
746
- }
747
- ]
748
- }
749
- ];
750
-
751
- // src/schema/review/schema.ts
752
- var reviewFields = [
753
- {
754
- name: "reviewRating",
755
- title: "Review Rating",
756
- type: "object",
757
- jsonLdType: "Rating",
758
- fields: [
759
- {
760
- name: "ratingValue",
761
- title: "Rating Value",
762
- type: "string",
763
- required: {
764
- key: "ratingValueRequired",
765
- message: "Rating value is required for Schema.org Review."
766
- }
767
- }
768
- ]
769
- },
770
- {
771
- name: "author",
772
- title: "Author",
773
- type: "object",
774
- jsonLdType: "Person",
775
- fields: [
776
- {
777
- name: "name",
778
- title: "Author Name",
779
- type: "string",
780
- required: {
781
- key: "authorNameRequired",
782
- message: "Author name is required for Schema.org Review."
783
- }
784
- }
785
- ]
786
- },
787
- {
788
- name: "reviewBody",
789
- title: "Review Body",
790
- type: "text",
791
- rows: 3
792
- }
793
- ];
794
-
795
- // src/schema/SchemaOrgScript.tsx
796
- import { jsx as jsx2 } from "react/jsx-runtime";
797
- function SchemaOrgScript({
798
- jsonLd
799
- }) {
800
- if (!jsonLd) return null;
801
- return /* @__PURE__ */ jsx2(
802
- "script",
803
- {
804
- type: "application/ld+json",
805
- dangerouslySetInnerHTML: { __html: escapeJsonForScript(JSON.stringify(jsonLd)) }
806
- }
807
- );
808
- }
809
-
810
- // src/schema/softwareApplication/schema.ts
811
- var softwareApplicationFields = [
812
- {
813
- name: "name",
814
- title: "Application Name",
815
- type: "string",
816
- description: "The name of the software application.",
817
- required: {
818
- key: "nameRequired",
819
- message: "Application name is required for Schema.org."
820
- }
821
- },
822
- {
823
- name: "applicationCategory",
824
- title: "Application Category",
825
- type: "string",
826
- description: "The category of the application.",
827
- options: [
828
- { title: "Developer Application", value: "DeveloperApplication" },
829
- { title: "Business Application", value: "BusinessApplication" },
830
- { title: "Game Application", value: "GameApplication" },
831
- { title: "Educational Application", value: "EducationalApplication" },
832
- { title: "Utilities Application", value: "UtilitiesApplication" },
833
- { title: "Social Networking Application", value: "SocialNetworkingApplication" }
834
- ]
835
- },
836
- {
837
- name: "operatingSystem",
838
- title: "Operating System",
839
- type: "string",
840
- description: 'The supported operating systems, e.g. "Windows, macOS".'
841
- },
842
- {
843
- name: "url",
844
- title: "Application URL",
845
- type: "url",
846
- description: "URL of the software application."
847
- }
848
- ];
849
-
850
- // src/schema/videoObject/schema.ts
851
- var videoObjectFields = [
852
- {
853
- name: "name",
854
- title: "Video Name",
855
- type: "string",
856
- description: "The name of the video.",
857
- required: { key: "nameRequired", message: "Video name is required for Schema.org." }
858
- },
859
- {
860
- name: "description",
861
- title: "Description",
862
- type: "text",
863
- rows: 3,
864
- description: "A description of the video."
865
- },
866
- {
867
- name: "thumbnailUrl",
868
- title: "Thumbnail URL",
869
- type: "url",
870
- description: "URL of the video thumbnail image."
871
- },
872
- {
873
- name: "uploadDate",
874
- title: "Upload Date",
875
- type: "date",
876
- description: "The date the video was uploaded."
877
- },
878
- {
879
- name: "contentUrl",
880
- title: "Content URL",
881
- type: "url",
882
- description: "URL to the actual video file."
883
- }
884
- ];
885
-
886
- // src/schema/webApplication/schema.ts
887
- var webApplicationFields = [
888
- {
889
- name: "name",
890
- title: "Application Name",
891
- type: "string",
892
- description: "The name of the web application.",
893
- required: {
894
- key: "nameRequired",
895
- message: "Application name is required for Schema.org."
896
- }
897
- },
898
- {
899
- name: "url",
900
- title: "Application URL",
901
- type: "url",
902
- description: "URL of the web application.",
903
- required: { key: "urlRequired", message: "Application URL is required for Schema.org." }
904
- },
905
- {
906
- name: "applicationCategory",
907
- title: "Application Category",
908
- type: "string",
909
- description: "The category of the application.",
910
- options: [
911
- { title: "Developer Application", value: "DeveloperApplication" },
912
- { title: "Business Application", value: "BusinessApplication" },
913
- { title: "Game Application", value: "GameApplication" },
914
- { title: "Educational Application", value: "EducationalApplication" },
915
- { title: "Utilities Application", value: "UtilitiesApplication" },
916
- { title: "Social Networking Application", value: "SocialNetworkingApplication" }
917
- ]
918
- },
919
- {
920
- name: "operatingSystem",
921
- title: "Operating System",
922
- type: "string",
923
- description: "The supported operating systems.",
924
- initialValue: "All"
925
- }
926
- ];
927
-
928
- // src/schema/webPage/schema.ts
929
- var webPageFields = [
930
- {
931
- name: "name",
932
- title: "Page Name",
933
- type: "string",
934
- description: "The title of the page.",
935
- required: { key: "nameRequired", message: "Page name is required for Schema.org." }
936
- },
937
- {
938
- name: "url",
939
- title: "Page URL",
940
- type: "url",
941
- description: "The full URL of the page.",
942
- required: { key: "urlRequired", message: "Page URL is required for Schema.org." }
943
- },
944
- {
945
- name: "description",
946
- title: "Description",
947
- type: "text",
948
- rows: 3,
949
- description: "A short description of the page."
950
- },
951
- {
952
- name: "inLanguage",
953
- title: "Language",
954
- type: "string",
955
- description: 'The language of the page content, e.g. "en".',
956
- initialValue: "en",
957
- options: [
958
- { title: "English", value: "en" },
959
- { title: "Spanish", value: "es" },
960
- { title: "French", value: "fr" },
961
- { title: "German", value: "de" },
962
- { title: "Portuguese", value: "pt" },
963
- { title: "Italian", value: "it" },
964
- { title: "Dutch", value: "nl" },
965
- { title: "Japanese", value: "ja" },
966
- { title: "Chinese", value: "zh" },
967
- { title: "Korean", value: "ko" },
968
- { title: "Hindi", value: "hi" },
969
- { title: "Arabic", value: "ar" }
970
- ]
971
- },
972
- {
973
- name: "isPartOf",
974
- title: "Part Of (Website)",
975
- type: "object",
976
- description: "The website this page belongs to.",
977
- jsonLdType: "WebSite",
978
- fields: [
979
- {
980
- name: "url",
981
- title: "Website URL",
982
- type: "url",
983
- description: "URL of the parent website."
984
- }
985
- ]
986
- }
987
- ];
988
-
989
- // src/schema/website/component.tsx
990
- import { jsx as jsx3 } from "react/jsx-runtime";
991
- function buildWebsiteJsonLd(data) {
992
- var _a;
993
- if (!(data == null ? void 0 : data.name) || !(data == null ? void 0 : data.url)) return null;
994
- const jsonLd = {
995
- "@context": "https://schema.org",
996
- "@type": "WebSite",
997
- name: data.name,
998
- url: data.url
999
- };
1000
- if (data.description) jsonLd.description = data.description;
1001
- if (data.inLanguage) jsonLd.inLanguage = data.inLanguage;
1002
- if ((_a = data.publisher) == null ? void 0 : _a.name) {
1003
- const publisher = {
1004
- "@type": "Organization",
1005
- name: data.publisher.name
1006
- };
1007
- if (data.publisher.url) publisher.url = data.publisher.url;
1008
- if (data.publisher.logoUrl) {
1009
- publisher.logo = {
1010
- "@type": "ImageObject",
1011
- url: data.publisher.logoUrl
1012
- };
1013
- }
1014
- jsonLd.publisher = publisher;
1015
- }
1016
- return jsonLd;
1017
- }
1018
- function WebsiteSchema({ data }) {
1019
- const jsonLd = buildWebsiteJsonLd(data);
1020
- if (!jsonLd) return null;
1021
- return /* @__PURE__ */ jsx3(
1022
- "script",
1023
- {
1024
- type: "application/ld+json",
1025
- dangerouslySetInnerHTML: { __html: escapeJsonForScript(JSON.stringify(jsonLd)) }
1026
- }
1027
- );
1028
- }
1029
-
1030
- // src/schema/SchemaOrgScripts.tsx
1031
- import { Fragment, jsx as jsx4 } from "react/jsx-runtime";
1032
- var GENERIC_TYPES = {
1033
- schemaOrgWebPage: { schemaType: "WebPage", fields: webPageFields, requiredFields: ["name"] },
1034
- schemaOrgPerson: { schemaType: "Person", fields: personFields, requiredFields: ["name"] },
1035
- schemaOrgBreadcrumbList: {
1036
- schemaType: "BreadcrumbList",
1037
- fields: breadcrumbListFields,
1038
- requiredFields: []
1039
- },
1040
- schemaOrgImageObject: {
1041
- schemaType: "ImageObject",
1042
- fields: imageObjectFields,
1043
- requiredFields: ["url"]
1044
- },
1045
- schemaOrgArticle: { schemaType: "Article", fields: articleFields, requiredFields: ["headline"] },
1046
- schemaOrgBlogPosting: {
1047
- schemaType: "BlogPosting",
1048
- fields: blogPostingFields,
1049
- requiredFields: ["headline"]
1050
- },
1051
- schemaOrgFAQPage: { schemaType: "FAQPage", fields: faqPageFields, requiredFields: [] },
1052
- schemaOrgHowTo: { schemaType: "HowTo", fields: howToFields, requiredFields: ["name"] },
1053
- schemaOrgProduct: { schemaType: "Product", fields: productFields, requiredFields: ["name"] },
1054
- schemaOrgOffer: { schemaType: "Offer", fields: offerFields, requiredFields: ["price"] },
1055
- schemaOrgAggregateRating: {
1056
- schemaType: "AggregateRating",
1057
- fields: aggregateRatingFields,
1058
- requiredFields: ["ratingValue"]
1059
- },
1060
- schemaOrgReview: { schemaType: "Review", fields: reviewFields, requiredFields: [] },
1061
- schemaOrgBrand: { schemaType: "Brand", fields: brandFields, requiredFields: ["name"] },
1062
- schemaOrgLocalBusiness: {
1063
- schemaType: "LocalBusiness",
1064
- fields: localBusinessFields,
1065
- requiredFields: ["name"]
1066
- },
1067
- schemaOrgPostalAddress: {
1068
- schemaType: "PostalAddress",
1069
- fields: postalAddressFields,
1070
- requiredFields: []
1071
- },
1072
- schemaOrgContactPoint: {
1073
- schemaType: "ContactPoint",
1074
- fields: contactPointFields,
1075
- requiredFields: []
1076
- },
1077
- schemaOrgSoftwareApplication: {
1078
- schemaType: "SoftwareApplication",
1079
- fields: softwareApplicationFields,
1080
- requiredFields: ["name"]
1081
- },
1082
- schemaOrgWebApplication: {
1083
- schemaType: "WebApplication",
1084
- fields: webApplicationFields,
1085
- requiredFields: ["name"]
1086
- },
1087
- schemaOrgEvent: { schemaType: "Event", fields: eventFields, requiredFields: ["name"] },
1088
- schemaOrgPlace: { schemaType: "Place", fields: placeFields, requiredFields: ["name"] },
1089
- schemaOrgVideoObject: {
1090
- schemaType: "VideoObject",
1091
- fields: videoObjectFields,
1092
- requiredFields: ["name"]
1093
- },
1094
- schemaOrgCourse: { schemaType: "Course", fields: courseFields, requiredFields: ["name"] }
1095
- };
1096
- function buildJsonLdForItem(item) {
1097
- const type = item._type;
1098
- if (!type) return null;
1099
- if (type === "schemaOrgWebsite") {
1100
- return buildWebsiteJsonLd(item);
1101
- }
1102
- if (type === "schemaOrgOrganization") {
1103
- return buildOrganizationJsonLd(item);
1104
- }
1105
- const entry = GENERIC_TYPES[type];
1106
- if (!entry) return null;
1107
- return buildGenericJsonLd(entry.schemaType, item, entry.fields, entry.requiredFields);
1108
- }
1109
- function SchemaOrgScripts({ data }) {
1110
- if (!(data == null ? void 0 : data.length)) return null;
1111
- const scripts = data.map((item) => buildJsonLdForItem(item)).filter((jsonLd) => jsonLd !== null);
1112
- if (!scripts.length) return null;
1113
- return /* @__PURE__ */ jsx4(Fragment, { children: scripts.map((jsonLd) => /* @__PURE__ */ jsx4(SchemaOrgScript, { jsonLd }, JSON.stringify(jsonLd))) });
1114
- }
1115
-
1116
- // src/schema/aggregateRating/component.tsx
1117
- import { jsx as jsx5 } from "react/jsx-runtime";
1118
- function buildAggregateRatingJsonLd(data) {
1119
- return buildGenericJsonLd(
1120
- "AggregateRating",
1121
- data,
1122
- aggregateRatingFields,
1123
- ["ratingValue"]
1124
- );
1125
- }
1126
- function AggregateRatingSchema({ data }) {
1127
- return /* @__PURE__ */ jsx5(SchemaOrgScript, { jsonLd: buildAggregateRatingJsonLd(data) });
1128
- }
1129
-
1130
- // src/schema/article/component.tsx
1131
- import { jsx as jsx6 } from "react/jsx-runtime";
1132
- function buildArticleJsonLd(data) {
1133
- return buildGenericJsonLd(
1134
- "Article",
1135
- data,
1136
- articleFields,
1137
- ["headline"]
1138
- );
1139
- }
1140
- function ArticleSchema({ data }) {
1141
- return /* @__PURE__ */ jsx6(SchemaOrgScript, { jsonLd: buildArticleJsonLd(data) });
1142
- }
1143
-
1144
- // src/schema/blogPosting/component.tsx
1145
- import { jsx as jsx7 } from "react/jsx-runtime";
1146
- function buildBlogPostingJsonLd(data) {
1147
- return buildGenericJsonLd(
1148
- "BlogPosting",
1149
- data,
1150
- blogPostingFields,
1151
- ["headline"]
1152
- );
1153
- }
1154
- function BlogPostingSchema({ data }) {
1155
- return /* @__PURE__ */ jsx7(SchemaOrgScript, { jsonLd: buildBlogPostingJsonLd(data) });
1156
- }
1157
-
1158
- // src/schema/brand/component.tsx
1159
- import { jsx as jsx8 } from "react/jsx-runtime";
1160
- function buildBrandJsonLd(data) {
1161
- return buildGenericJsonLd(
1162
- "Brand",
1163
- data,
1164
- brandFields,
1165
- ["name"]
1166
- );
1167
- }
1168
- function BrandSchema({ data }) {
1169
- return /* @__PURE__ */ jsx8(SchemaOrgScript, { jsonLd: buildBrandJsonLd(data) });
1170
- }
1171
-
1172
- // src/schema/breadcrumbList/component.tsx
1173
- import { jsx as jsx9 } from "react/jsx-runtime";
1174
- function buildBreadcrumbListJsonLd(data) {
1175
- return buildGenericJsonLd(
1176
- "BreadcrumbList",
1177
- data,
1178
- breadcrumbListFields,
1179
- []
1180
- );
1181
- }
1182
- function BreadcrumbListSchema({ data }) {
1183
- return /* @__PURE__ */ jsx9(SchemaOrgScript, { jsonLd: buildBreadcrumbListJsonLd(data) });
1184
- }
1185
-
1186
- // src/schema/contactPoint/component.tsx
1187
- import { jsx as jsx10 } from "react/jsx-runtime";
1188
- function buildContactPointJsonLd(data) {
1189
- return buildGenericJsonLd(
1190
- "ContactPoint",
1191
- data,
1192
- contactPointFields,
1193
- ["contactType"]
1194
- );
1195
- }
1196
- function ContactPointSchema({ data }) {
1197
- return /* @__PURE__ */ jsx10(SchemaOrgScript, { jsonLd: buildContactPointJsonLd(data) });
1198
- }
1199
-
1200
- // src/schema/course/component.tsx
1201
- import { jsx as jsx11 } from "react/jsx-runtime";
1202
- function buildCourseJsonLd(data) {
1203
- return buildGenericJsonLd(
1204
- "Course",
1205
- data,
1206
- courseFields,
1207
- ["name"]
1208
- );
1209
- }
1210
- function CourseSchema({ data }) {
1211
- return /* @__PURE__ */ jsx11(SchemaOrgScript, { jsonLd: buildCourseJsonLd(data) });
1212
- }
1213
-
1214
- // src/schema/event/component.tsx
1215
- import { jsx as jsx12 } from "react/jsx-runtime";
1216
- function buildEventJsonLd(data) {
1217
- return buildGenericJsonLd(
1218
- "Event",
1219
- data,
1220
- eventFields,
1221
- ["name"]
1222
- );
1223
- }
1224
- function EventSchema({ data }) {
1225
- return /* @__PURE__ */ jsx12(SchemaOrgScript, { jsonLd: buildEventJsonLd(data) });
1226
- }
1227
-
1228
- // src/schema/faqPage/component.tsx
1229
- import { jsx as jsx13 } from "react/jsx-runtime";
1230
- function buildFAQPageJsonLd(data) {
1231
- return buildGenericJsonLd(
1232
- "FAQPage",
1233
- data,
1234
- faqPageFields,
1235
- []
1236
- );
1237
- }
1238
- function FAQPageSchema({ data }) {
1239
- return /* @__PURE__ */ jsx13(SchemaOrgScript, { jsonLd: buildFAQPageJsonLd(data) });
1240
- }
1241
-
1242
- // src/schema/howTo/component.tsx
1243
- import { jsx as jsx14 } from "react/jsx-runtime";
1244
- function buildHowToJsonLd(data) {
1245
- return buildGenericJsonLd(
1246
- "HowTo",
1247
- data,
1248
- howToFields,
1249
- ["name"]
1250
- );
1251
- }
1252
- function HowToSchema({ data }) {
1253
- return /* @__PURE__ */ jsx14(SchemaOrgScript, { jsonLd: buildHowToJsonLd(data) });
1254
- }
1255
-
1256
- // src/schema/imageObject/component.tsx
1257
- import { jsx as jsx15 } from "react/jsx-runtime";
1258
- function buildImageObjectJsonLd(data) {
1259
- return buildGenericJsonLd(
1260
- "ImageObject",
1261
- data,
1262
- imageObjectFields,
1263
- ["url"]
1264
- );
1265
- }
1266
- function ImageObjectSchema({ data }) {
1267
- return /* @__PURE__ */ jsx15(SchemaOrgScript, { jsonLd: buildImageObjectJsonLd(data) });
1268
- }
1269
-
1270
- // src/schema/localBusiness/component.tsx
1271
- import { jsx as jsx16 } from "react/jsx-runtime";
1272
- function buildLocalBusinessJsonLd(data) {
1273
- return buildGenericJsonLd(
1274
- "LocalBusiness",
1275
- data,
1276
- localBusinessFields,
1277
- ["name"]
1278
- );
1279
- }
1280
- function LocalBusinessSchema({ data }) {
1281
- return /* @__PURE__ */ jsx16(SchemaOrgScript, { jsonLd: buildLocalBusinessJsonLd(data) });
1282
- }
1283
-
1284
- // src/schema/offer/component.tsx
1285
- import { jsx as jsx17 } from "react/jsx-runtime";
1286
- function buildOfferJsonLd(data) {
1287
- return buildGenericJsonLd(
1288
- "Offer",
1289
- data,
1290
- offerFields,
1291
- ["price"]
1292
- );
1293
- }
1294
- function OfferSchema({ data }) {
1295
- return /* @__PURE__ */ jsx17(SchemaOrgScript, { jsonLd: buildOfferJsonLd(data) });
1296
- }
1297
-
1298
- // src/schema/person/component.tsx
1299
- import { jsx as jsx18 } from "react/jsx-runtime";
1300
- function buildPersonJsonLd(data) {
1301
- return buildGenericJsonLd(
1302
- "Person",
1303
- data,
1304
- personFields,
1305
- ["name"]
1306
- );
1307
- }
1308
- function PersonSchema({ data }) {
1309
- return /* @__PURE__ */ jsx18(SchemaOrgScript, { jsonLd: buildPersonJsonLd(data) });
1310
- }
1311
-
1312
- // src/schema/place/component.tsx
1313
- import { jsx as jsx19 } from "react/jsx-runtime";
1314
- function buildPlaceJsonLd(data) {
1315
- return buildGenericJsonLd(
1316
- "Place",
1317
- data,
1318
- placeFields,
1319
- ["name"]
1320
- );
1321
- }
1322
- function PlaceSchema({ data }) {
1323
- return /* @__PURE__ */ jsx19(SchemaOrgScript, { jsonLd: buildPlaceJsonLd(data) });
1324
- }
1325
-
1326
- // src/schema/postalAddress/component.tsx
1327
- import { jsx as jsx20 } from "react/jsx-runtime";
1328
- function buildPostalAddressJsonLd(data) {
1329
- return buildGenericJsonLd(
1330
- "PostalAddress",
1331
- data,
1332
- postalAddressFields,
1333
- []
1334
- );
1335
- }
1336
- function PostalAddressSchema({ data }) {
1337
- return /* @__PURE__ */ jsx20(SchemaOrgScript, { jsonLd: buildPostalAddressJsonLd(data) });
1338
- }
1339
-
1340
- // src/schema/product/component.tsx
1341
- import { jsx as jsx21 } from "react/jsx-runtime";
1342
- function buildProductJsonLd(data) {
1343
- return buildGenericJsonLd(
1344
- "Product",
1345
- data,
1346
- productFields,
1347
- ["name"]
1348
- );
1349
- }
1350
- function ProductSchema({ data }) {
1351
- return /* @__PURE__ */ jsx21(SchemaOrgScript, { jsonLd: buildProductJsonLd(data) });
1352
- }
1353
-
1354
- // src/schema/review/component.tsx
1355
- import { jsx as jsx22 } from "react/jsx-runtime";
1356
- function buildReviewJsonLd(data) {
1357
- return buildGenericJsonLd(
1358
- "Review",
1359
- data,
1360
- reviewFields,
1361
- []
1362
- );
1363
- }
1364
- function ReviewSchema({ data }) {
1365
- return /* @__PURE__ */ jsx22(SchemaOrgScript, { jsonLd: buildReviewJsonLd(data) });
1366
- }
1367
-
1368
- // src/schema/softwareApplication/component.tsx
1369
- import { jsx as jsx23 } from "react/jsx-runtime";
1370
- function buildSoftwareApplicationJsonLd(data) {
1371
- return buildGenericJsonLd(
1372
- "SoftwareApplication",
1373
- data,
1374
- softwareApplicationFields,
1375
- ["name"]
1376
- );
1377
- }
1378
- function SoftwareApplicationSchema({
1379
- data
1380
- }) {
1381
- return /* @__PURE__ */ jsx23(SchemaOrgScript, { jsonLd: buildSoftwareApplicationJsonLd(data) });
1382
- }
1383
-
1384
- // src/schema/videoObject/component.tsx
1385
- import { jsx as jsx24 } from "react/jsx-runtime";
1386
- function buildVideoObjectJsonLd(data) {
1387
- return buildGenericJsonLd(
1388
- "VideoObject",
1389
- data,
1390
- videoObjectFields,
1391
- ["name"]
1392
- );
1393
- }
1394
- function VideoObjectSchema({ data }) {
1395
- return /* @__PURE__ */ jsx24(SchemaOrgScript, { jsonLd: buildVideoObjectJsonLd(data) });
1396
- }
1397
-
1398
- // src/schema/webApplication/component.tsx
1399
- import { jsx as jsx25 } from "react/jsx-runtime";
1400
- function buildWebApplicationJsonLd(data) {
1401
- return buildGenericJsonLd(
1402
- "WebApplication",
1403
- data,
1404
- webApplicationFields,
1405
- ["name", "url"]
1406
- );
1407
- }
1408
- function WebApplicationSchema({ data }) {
1409
- return /* @__PURE__ */ jsx25(SchemaOrgScript, { jsonLd: buildWebApplicationJsonLd(data) });
1410
- }
1411
-
1412
- // src/schema/webPage/component.tsx
1413
- import { jsx as jsx26 } from "react/jsx-runtime";
1414
- function buildWebPageJsonLd(data) {
1415
- return buildGenericJsonLd(
1416
- "WebPage",
1417
- data,
1418
- webPageFields,
1419
- ["name", "url"]
1420
- );
1421
- }
1422
- function WebPageSchema({ data }) {
1423
- return /* @__PURE__ */ jsx26(SchemaOrgScript, { jsonLd: buildWebPageJsonLd(data) });
1424
- }
1425
- export {
1426
- AggregateRatingSchema,
1427
- ArticleSchema,
1428
- BlogPostingSchema,
1429
- BrandSchema,
1430
- BreadcrumbListSchema,
1431
- ContactPointSchema,
1432
- CourseSchema,
1433
- EventSchema,
1434
- FAQPageSchema,
1435
- HowToSchema,
1436
- ImageObjectSchema,
1437
- LocalBusinessSchema,
1438
- OfferSchema,
1439
- OrganizationSchema,
1440
- PersonSchema,
1441
- PlaceSchema,
1442
- PostalAddressSchema,
1443
- ProductSchema,
1444
- ReviewSchema,
1445
- SchemaOrgScripts,
1446
- SoftwareApplicationSchema,
1447
- VideoObjectSchema,
1448
- WebApplicationSchema,
1449
- WebPageSchema,
1450
- WebsiteSchema,
1451
- buildAggregateRatingJsonLd,
1452
- buildArticleJsonLd,
1453
- buildBlogPostingJsonLd,
1454
- buildBrandJsonLd,
1455
- buildBreadcrumbListJsonLd,
1456
- buildContactPointJsonLd,
1457
- buildCourseJsonLd,
1458
- buildEventJsonLd,
1459
- buildFAQPageJsonLd,
1460
- buildHowToJsonLd,
1461
- buildImageObjectJsonLd,
1462
- buildLocalBusinessJsonLd,
1463
- buildOfferJsonLd,
1464
- buildOrganizationJsonLd,
1465
- buildPersonJsonLd,
1466
- buildPlaceJsonLd,
1467
- buildPostalAddressJsonLd,
1468
- buildProductJsonLd,
1469
- buildReviewJsonLd,
1470
- buildSoftwareApplicationJsonLd,
1471
- buildVideoObjectJsonLd,
1472
- buildWebApplicationJsonLd,
1473
- buildWebPageJsonLd,
1474
- buildWebsiteJsonLd
1475
- };
1
+ export { AggregateRatingSchema, ArticleSchema, BlogPostingSchema, BrandSchema, BreadcrumbListSchema, ContactPointSchema, CourseSchema, EventSchema, FAQPageSchema, HowToSchema, ImageObjectSchema, LocalBusinessSchema, OfferSchema, OrganizationSchema, PersonSchema, PlaceSchema, PostalAddressSchema, ProductSchema, ReviewSchema, SchemaOrgScripts, SoftwareApplicationSchema, VideoObjectSchema, WebApplicationSchema, WebPageSchema, WebsiteSchema, buildAggregateRatingJsonLd, buildArticleJsonLd, buildBlogPostingJsonLd, buildBrandJsonLd, buildBreadcrumbListJsonLd, buildContactPointJsonLd, buildCourseJsonLd, buildEventJsonLd, buildFAQPageJsonLd, buildHowToJsonLd, buildImageObjectJsonLd, buildLocalBusinessJsonLd, buildOfferJsonLd, buildOrganizationJsonLd, buildPersonJsonLd, buildPlaceJsonLd, buildPostalAddressJsonLd, buildProductJsonLd, buildReviewJsonLd, buildSoftwareApplicationJsonLd, buildVideoObjectJsonLd, buildWebApplicationJsonLd, buildWebPageJsonLd, buildWebsiteJsonLd } from '../chunk-527WXITP.js';
2
+ import '../chunk-6CYMVS3O.js';
3
+ import '../chunk-2NMEKWO5.js';
4
+ //# sourceMappingURL=next.js.map
1476
5
  //# sourceMappingURL=next.js.map