@aws505/sheetsite 1.0.8 → 1.0.10
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/components/index.d.mts +3 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +1 -0
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -0
- package/dist/components/index.mjs.map +1 -1
- package/dist/data/index.js +3 -1
- package/dist/data/index.js.map +1 -1
- package/dist/data/index.mjs +3 -1
- package/dist/data/index.mjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/sections/Hero.tsx +2 -1
- package/src/data/types.ts +3 -0
package/dist/index.mjs
CHANGED
|
@@ -385,7 +385,9 @@ var BusinessInfoSchema = z.object({
|
|
|
385
385
|
// Business metadata
|
|
386
386
|
priceRange: z.enum(["$", "$$", "$$$", "$$$$"]).optional(),
|
|
387
387
|
yearEstablished: z.number().optional(),
|
|
388
|
-
licenseNumber: z.string().optional()
|
|
388
|
+
licenseNumber: z.string().optional(),
|
|
389
|
+
// Business type for trust signals and content customization
|
|
390
|
+
type: z.string().optional()
|
|
389
391
|
});
|
|
390
392
|
var DayOfWeek = z.enum(["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]);
|
|
391
393
|
var HoursEntrySchema = z.object({
|
|
@@ -4031,6 +4033,7 @@ var defaultTrustSignals = {
|
|
|
4031
4033
|
tailor: ["Expert Craftsmanship", "Perfect Fit Guaranteed", "Quick Turnaround"],
|
|
4032
4034
|
professional: ["Licensed & Insured", "Years of Experience", "Client Focused"],
|
|
4033
4035
|
retail: ["Quality Products", "Great Selection", "Friendly Service"],
|
|
4036
|
+
boutique: ["Unique Selection", "Personal Service", "Quality Brands"],
|
|
4034
4037
|
generic: ["Quality Service", "Customer First", "Community Trusted"],
|
|
4035
4038
|
default: ["Quality Service", "Fair Prices", "Customer First"]
|
|
4036
4039
|
};
|