@pixelated-tech/components 3.3.5 → 3.4.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 (158) hide show
  1. package/README.COMPONENTS.md +126 -0
  2. package/README.md +15 -9
  3. package/dist/components/admin/componentusage/componentAnalysis.js +144 -0
  4. package/dist/components/admin/componentusage/componentDiscovery.js +85 -0
  5. package/dist/components/admin/deploy/deployment.integration.js +170 -0
  6. package/dist/components/admin/site-health/google-api-auth.js +69 -0
  7. package/dist/components/admin/site-health/seo-metrics.config.json +265 -0
  8. package/dist/components/admin/site-health/site-health-accessibility.js +158 -0
  9. package/dist/components/admin/site-health/site-health-axe-core.integration.js +119 -0
  10. package/dist/components/admin/site-health/site-health-axe-core.js +53 -0
  11. package/dist/components/admin/site-health/site-health-cache.js +23 -0
  12. package/dist/components/admin/site-health/site-health-core-web-vitals.integration.js +208 -0
  13. package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +38 -0
  14. package/dist/components/admin/site-health/site-health-github.integration.js +81 -0
  15. package/dist/components/admin/site-health/site-health-github.js +34 -0
  16. package/dist/components/admin/site-health/site-health-google-analytics.integration.js +112 -0
  17. package/dist/components/admin/site-health/site-health-google-analytics.js +43 -0
  18. package/dist/components/admin/site-health/site-health-google-search-console.integration.js +118 -0
  19. package/dist/components/admin/site-health/site-health-google-search-console.js +43 -0
  20. package/dist/components/admin/site-health/site-health-indicators.js +71 -0
  21. package/dist/components/admin/site-health/site-health-on-site-seo.integration.js +578 -0
  22. package/dist/components/admin/site-health/site-health-on-site-seo.js +204 -0
  23. package/dist/components/admin/site-health/site-health-overview.js +65 -0
  24. package/dist/components/admin/site-health/site-health-performance.js +191 -0
  25. package/dist/components/admin/site-health/site-health-security.integration.js +109 -0
  26. package/dist/components/admin/site-health/site-health-security.js +169 -0
  27. package/dist/components/admin/site-health/site-health-seo.js +124 -0
  28. package/dist/components/admin/site-health/site-health-template.js +62 -0
  29. package/dist/components/admin/site-health/site-health-types.js +1 -0
  30. package/dist/components/admin/site-health/site-health-uptime.integration.js +29 -0
  31. package/dist/components/admin/site-health/site-health-uptime.js +30 -0
  32. package/dist/components/admin/site-health/site-health.css +427 -0
  33. package/dist/components/admin/sites/sites.integration.js +117 -0
  34. package/dist/components/cms/contentful.management.js +104 -0
  35. package/dist/components/cms/hubspot.components.js +3 -3
  36. package/dist/components/config/config.client.js +21 -10
  37. package/dist/components/general/table.js +3 -1
  38. package/dist/components/seo/googleanalytics.js +1 -2
  39. package/dist/components/shoppingcart/shipping.from.json +101 -0
  40. package/dist/components/shoppingcart/shipping.parcel.json +112 -0
  41. package/dist/components/shoppingcart/shipping.to.json +422 -0
  42. package/dist/components/shoppingcart/shoppingCartDiscountCodes.json +26 -0
  43. package/dist/components/shoppingcart/shoppingcart.components.js +1 -1
  44. package/dist/components/sitebuilder/config/ConfigBuilder.js +36 -140
  45. package/dist/components/sitebuilder/config/siteinfo-form.json +200 -0
  46. package/dist/components/sitebuilder/config/visualdesignform.json +244 -0
  47. package/dist/components/structured/buzzwordbingo.js +3 -2
  48. package/dist/data/404-data.json +128 -102
  49. package/dist/data/flickr.json +25 -0
  50. package/dist/data/form.json +368 -368
  51. package/dist/data/recipes.json +3251 -3251
  52. package/dist/data/references.json +138 -137
  53. package/dist/data/requestform.json +111 -0
  54. package/dist/data/requests.json +136 -135
  55. package/dist/data/resume.json +2573 -2575
  56. package/dist/data/routes.json +238 -238
  57. package/dist/data/routes2.json +141 -140
  58. package/dist/index.js +16 -3
  59. package/dist/index.server.js +36 -15
  60. package/dist/types/components/admin/componentusage/componentAnalysis.d.ts +35 -0
  61. package/dist/types/components/admin/componentusage/componentAnalysis.d.ts.map +1 -0
  62. package/dist/types/components/admin/componentusage/componentDiscovery.d.ts +10 -0
  63. package/dist/types/components/admin/componentusage/componentDiscovery.d.ts.map +1 -0
  64. package/dist/types/components/admin/deploy/deployment.integration.d.ts +26 -0
  65. package/dist/types/components/admin/deploy/deployment.integration.d.ts.map +1 -0
  66. package/dist/types/components/admin/site-health/google-api-auth.d.ts +37 -0
  67. package/dist/types/components/admin/site-health/google-api-auth.d.ts.map +1 -0
  68. package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +6 -0
  69. package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -0
  70. package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +6 -0
  71. package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -0
  72. package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts +63 -0
  73. package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts.map +1 -0
  74. package/dist/types/components/admin/site-health/site-health-cache.d.ts +12 -0
  75. package/dist/types/components/admin/site-health/site-health-cache.d.ts.map +1 -0
  76. package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts +3 -0
  77. package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts.map +1 -0
  78. package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +6 -0
  79. package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -0
  80. package/dist/types/components/admin/site-health/site-health-github.d.ts +8 -0
  81. package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -0
  82. package/dist/types/components/admin/site-health/site-health-github.integration.d.ts +26 -0
  83. package/dist/types/components/admin/site-health/site-health-github.integration.d.ts.map +1 -0
  84. package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +8 -0
  85. package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -0
  86. package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts +26 -0
  87. package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts.map +1 -0
  88. package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +8 -0
  89. package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -0
  90. package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts +46 -0
  91. package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts.map +1 -0
  92. package/dist/types/components/admin/site-health/site-health-indicators.d.ts +73 -0
  93. package/dist/types/components/admin/site-health/site-health-indicators.d.ts.map +1 -0
  94. package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +4 -0
  95. package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -0
  96. package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts +34 -0
  97. package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts.map +1 -0
  98. package/dist/types/components/admin/site-health/site-health-overview.d.ts +6 -0
  99. package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -0
  100. package/dist/types/components/admin/site-health/site-health-performance.d.ts +6 -0
  101. package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -0
  102. package/dist/types/components/admin/site-health/site-health-security.d.ts +6 -0
  103. package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -0
  104. package/dist/types/components/admin/site-health/site-health-security.integration.d.ts +29 -0
  105. package/dist/types/components/admin/site-health/site-health-security.integration.d.ts.map +1 -0
  106. package/dist/types/components/admin/site-health/site-health-seo.d.ts +6 -0
  107. package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -0
  108. package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
  109. package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -0
  110. package/dist/types/components/admin/site-health/site-health-types.d.ts +186 -0
  111. package/dist/types/components/admin/site-health/site-health-types.d.ts.map +1 -0
  112. package/dist/types/components/admin/site-health/site-health-uptime.d.ts +6 -0
  113. package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -0
  114. package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts +10 -0
  115. package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts.map +1 -0
  116. package/dist/types/components/admin/sites/sites.integration.d.ts +40 -0
  117. package/dist/types/components/admin/sites/sites.integration.d.ts.map +1 -0
  118. package/dist/types/components/cms/contentful.management.d.ts +41 -0
  119. package/dist/types/components/cms/contentful.management.d.ts.map +1 -1
  120. package/dist/types/components/config/config.client.d.ts +1 -2
  121. package/dist/types/components/config/config.client.d.ts.map +1 -1
  122. package/dist/types/components/general/table.d.ts +1 -0
  123. package/dist/types/components/general/table.d.ts.map +1 -1
  124. package/dist/types/components/seo/googleanalytics.d.ts +1 -1
  125. package/dist/types/components/seo/googleanalytics.d.ts.map +1 -1
  126. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +4 -4
  127. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
  128. package/dist/types/components/structured/buzzwordbingo.d.ts +1 -1
  129. package/dist/types/components/structured/buzzwordbingo.d.ts.map +1 -1
  130. package/dist/types/components/structured/buzzwordbingo.words.d.ts +2 -0
  131. package/dist/types/components/structured/buzzwordbingo.words.d.ts.map +1 -0
  132. package/dist/types/index.d.ts +16 -3
  133. package/dist/types/index.server.d.ts +36 -13
  134. package/dist/types/stories/admin/preview.d.ts +12 -0
  135. package/dist/types/stories/admin/preview.d.ts.map +1 -0
  136. package/dist/types/stories/admin/site-health.stories.d.ts +65 -0
  137. package/dist/types/stories/admin/site-health.stories.d.ts.map +1 -0
  138. package/dist/types/stories/structured/buzzword-bingo.stories.d.ts +1 -1
  139. package/dist/types/stories/structured/buzzword-bingo.stories.d.ts.map +1 -1
  140. package/dist/types/tests/site-health-axe-core.test.d.ts +2 -0
  141. package/dist/types/tests/site-health-axe-core.test.d.ts.map +1 -0
  142. package/dist/types/tests/site-health-cache.test.d.ts +2 -0
  143. package/dist/types/tests/site-health-cache.test.d.ts.map +1 -0
  144. package/dist/types/tests/site-health-indicators.test.d.ts +2 -0
  145. package/dist/types/tests/site-health-indicators.test.d.ts.map +1 -0
  146. package/dist/types/tests/site-health-overview.test.d.ts +2 -0
  147. package/dist/types/tests/site-health-overview.test.d.ts.map +1 -0
  148. package/dist/types/tests/site-health-template.test.d.ts +2 -0
  149. package/dist/types/tests/site-health-template.test.d.ts.map +1 -0
  150. package/dist/types/tests/sites.integration.test.d.ts +2 -0
  151. package/dist/types/tests/sites.integration.test.d.ts.map +1 -0
  152. package/package.json +15 -9
  153. package/dist/data/shipping.to.json +0 -422
  154. package/dist/data/siteinfo-form.json +0 -200
  155. package/dist/data/visualdesignform.json +0 -244
  156. package/dist/types/data/buzzwords.d.ts +0 -2
  157. package/dist/types/data/buzzwords.d.ts.map +0 -1
  158. /package/dist/{data/buzzwords.js → components/structured/buzzwordbingo.words.js} +0 -0
@@ -1,240 +1,240 @@
1
1
  {
2
- "siteInfo": {
3
- "name": "Pixelated Technologies",
4
- "author": "Brian Whaley",
5
- "description": "Custom web development and digital design agency specializing in React, Next.js, and modern web technologies",
6
- "keywords": "pixelated, web development, react, next.js, custom websites, digital design, small business",
7
- "url": "https://pixelated.tech",
8
- "email": "info@pixelated.tech",
9
- "favicon": "/favicon.ico",
10
- "favicon_sizes": "64x64 32x32 24x24 16x16",
11
- "favicon_type": "image/x-icon",
12
- "theme_color": "#369",
13
- "background_color": "#ffffff",
14
- "default_locale": "en",
15
- "display": "standalone",
16
- "image": "/images/pix/pix-bg-512.gif",
17
- "image_height": "512",
18
- "image_width": "512",
19
- "telephone": "+1-973-710-8008",
20
- "address": {
21
- "streetAddress": "10 Jade Circle",
22
- "addressLocality": "Denville",
23
- "addressRegion": "NJ",
24
- "postalCode": "07834",
25
- "addressCountry": "US"
26
- },
27
- "priceRange": "$$",
28
- "sameAs": [
29
- "https://www.linkedin.com/in/brianwhaley",
30
- "https://github.com/brianwhaley",
31
- "https://twitter.com/brianwhaley"
32
- ]
33
- },
34
- "visualdesign": {
35
- "primary-color": { "value": "#369", "type": "color", "group": "palette", "label": "Primary color" },
36
- "secondary-color": { "value": "#BCD", "type": "color", "group": "palette", "label": "Secondary color" },
37
- "accent1-color": { "value": "#CCC", "type": "color", "group": "palette", "label": "Accent color 1" },
38
- "accent2-color": { "value": "#EEE", "type": "color", "group": "palette", "label": "Accent color 2" },
39
- "bg-color": { "value": "#ffffff", "type": "color", "group": "palette", "label": "Background color" },
40
- "text-color": { "value": "#000000", "type": "color", "group": "palette", "label": "Font color" },
41
- "header-font": { "value": "\"Montserrat\", Verdana, sans-serif", "type": "font", "group": "typography", "label": "Header font" },
42
- "body-font": { "value": "\"Roboto\", Arial, sans-serif", "type": "font", "group": "typography", "label": "Body font" },
43
- "font-size1-min": { "value": "2.00rem", "type": "size", "group": "typography", "label": "Font size 1 min" },
44
- "font-size1-max": { "value": "3.00rem", "type": "size", "group": "typography", "label": "Font size 1 max" },
45
- "font-size2-min": { "value": "1.35rem", "type": "size", "group": "typography", "label": "Font size 2 min" },
46
- "font-size2-max": { "value": "1.75rem", "type": "size", "group": "typography", "label": "Font size 2 max" },
47
- "font-size3-min": { "value": "1.17rem", "type": "size", "group": "typography", "label": "Font size 3 min" },
48
- "font-size3-max": { "value": "1.35rem", "type": "size", "group": "typography", "label": "Font size 3 max" },
49
- "font-size4-min": { "value": "1.00rem", "type": "size", "group": "typography", "label": "Font size 4 min" },
50
- "font-size4-max": { "value": "1.25rem", "type": "size", "group": "typography", "label": "Font size 4 max" },
51
- "font-size5-min": { "value": "0.83rem", "type": "size", "group": "typography", "label": "Font size 5 min" },
52
- "font-size5-max": { "value": "1.00rem", "type": "size", "group": "typography", "label": "Font size 5 max" },
53
- "font-size6-min": { "value": "0.67rem", "type": "size", "group": "typography", "label": "Font size 6 min" },
54
- "font-size6-max": { "value": "0.85rem", "type": "size", "group": "typography", "label": "Font size 6 max" },
55
- "font-min-screen": { "value": "375px", "type": "size", "group": "typography", "label": "Font min screen" },
56
- "font-max-screen": { "value": "1440px", "type": "size", "group": "typography", "label": "Font max screen" }
57
- },
58
- "routes": [
59
- {
60
- "name": "Home",
61
- "path": "/",
62
- "title": "Pixelated Technologies Home",
63
- "description": "Pixelated Technologies offers a wide varity of products and services, including custom web development for small businesses, stock photography, touchup services, home design and remodeling, and more.",
64
- "keywords": "pixelated, web development, small business, stock photography, home redesign, remodeling, social media"
65
- }, {
66
- "name": "About Me",
67
- "routes": [
68
- {
69
- "name": "Resume",
70
- "path": "/resume",
71
- "title": "Brian Whaley - Resume",
72
- "description": "View the resume of Brian Whaley",
73
- "keywords": "brian whaley, resume, curriculum vitae, professional summary, contact information, education, skills, qualifications, work history, projects, voluteer work, certifications, honors and awards, training and conferences, rererences"
74
- }, {
75
- "name": "ReadMe",
76
- "path": "/readme",
77
- "title": "Brian Whaley - ReadMe",
78
- "description": "Every good piece of software needs a readme. So do people.",
79
- "keywords": "brian whaley, readme, management style"
80
- }, {
81
- "name": "Family Recipes",
82
- "path": "/recipes",
83
- "title": "Brian Whaley - Recipes",
84
- "description": "Pace / Barbano / Whaley Recipes through the ages",
85
- "keywords": "family recipes, pace family, barbano family, whaley family, italian recipes"
86
- }
87
- ]
88
- }, {
89
- "name": "Web Development",
90
- "routes": [
91
- {
92
- "name": "Work Overview",
93
- "path": "/workoverview",
94
- "title": "Brian Whaley - Work Overview",
95
- "description": "An overview of my work experience, including my resume, a readme file, social media accounts, and personal family recipes.",
96
- "keywords": "pixelated, brian whaley, web development, custom, small business, global, high performance teams, digital products, technology strategy, highly available, e-commerce portal, web sites, web applications, onshore, offshore, hybrid teams"
97
- }, {
98
- "name": "Work Portfolio",
99
- "path": "/workportfolio",
100
- "title": "Brian Whaley - Work Portfolio",
101
- "description": "A carousel gallery showing screenshots of some of the web properties I have worked on.",
102
- "keywords": "pixelated, brian whaley, carousel, gallery, screenshots, web development, work portfolio"
103
- }
104
- ]
105
- }, {
106
- "name": "Photography",
107
- "routes": [
108
- {
109
- "name": "Photo Overview",
110
- "path": "/photography",
111
- "title": "PixelVivid - Photography",
112
- "description": "An overview of the PixelVivid phtography portfolio.",
113
- "keywords": "pixelvivid, photography, overview, gallery, carousel, social media"
114
- }, {
115
- "name": "Photo Gallery",
116
- "path": "/photogallery",
117
- "title": "PixelVivid - Photo Gallery",
118
- "description": "A carousel of some of my best photographs throughout my life. They are primarily landscape photographs, macro photographs, and travel photographs. ",
119
- "keywords": "pixelvivid, gallery, carousel, photographs, landscape, macro, travel"
120
- }, {
121
- "name": "Social Media",
122
- "path": "/socialmedia",
123
- "title": "PixelVivid - Social Media",
124
- "description": "Links to all my digital footprints",
125
- "keywords": "pixelvivid, social media, photography, stock photography, istock, shutterstock, blurb, shutterfly, x, twitter, 500px, flickr, instagram"
126
- }
127
- ]
128
- }, {
129
- "name": "Custom Sunglasses",
130
- "routes": [
131
- {
132
- "name": "Customs Overview",
133
- "path": "/customsunglasses",
134
- "title": "PixelVivid - Custom Sunglasses",
135
- "description": "A sampling of the custom sunglasses I paint in my spare time",
136
- "keywords": "pixelvivid, custom sunglasses, oakley, refurbish, restore, custom paint, ebay, gallery, carousel"
137
- }, {
138
- "name": "Customs Gallery",
139
- "path": "/customsgallery",
140
- "title": "PixelVivid - Customs Gallery",
141
- "description": "A carousel gallery of some of the paint styles I do on sunglasses, including marbles, splatters, drips, and repairs",
142
- "keywords": "pixelvivid, gallery, carousel, custom paint, oakely, marble, splatter, drip, repair"
143
- }, {
144
- "name": "Customs on eBay",
145
- "path": "/ebay",
146
- "title": "PixelVivid - Customs on eBay",
147
- "description": "Check out my store on ebay where I sell my custom sunglasses",
148
- "keywords": "pixelvivid, online store, ecommerce, ebay, custom sunglasses"
149
- }, {
150
- "name": "Customs Request",
151
- "path": "/requests",
152
- "title": "PixelVivid - Customs Request",
153
- "description": "Request some custom sunglass work for yourself.",
154
- "keywords": "pixelvivid, online store, ecommerce, ebay, custom sunglasses, requests, form"
155
- }, {
156
- "name": "My Customs",
157
- "path": "/mycustoms",
158
- "title": "PixelVivid - My Customs",
159
- "description": "These are pictures of the custom sunglasses in my personal collection.",
160
- "keywords": "pixelvivid, custom sunglasses, personal collection, collection"
161
- }
162
- ]
163
- }, {
164
- "name": "Home Design",
165
- "routes": [
166
- {
167
- "name": "Design Overview",
168
- "path": "/homedesign",
169
- "title": "PixelVivid - Home Design",
170
- "description": "Overview of the home design and remodeling work our designers have worked on.",
171
- "keywords": "pixelvivid, home design, home remodeling "
172
- }, {
173
- "name": "Design Gallery",
174
- "path": "/designgallery",
175
- "title": "PixelVivid - Design Gallery",
176
- "description": "A gallery of photos from the home design and remodeling projects that our designers have worked on",
177
- "keywords": "pixelvivid, home design, home remodeling, gallery, carousel"
178
- }
179
- ]
180
- }, {
181
- "name": "Sandbox",
182
- "routes": [
183
- {
184
- "name": "Buzzword Bingo",
185
- "path": "/buzzwordbingo",
186
- "title": "Pixelated Technologies Buzzword Bingo",
187
- "description": "Buzzword Bingo is a game that is played in meetings to help keep you awake.",
188
- "keywords": ""
189
- }, {
190
- "name": "NerdJokes",
191
- "path": "/nerdjokes",
192
- "title": "Pixelated Technologies NerdJokes",
193
- "description": "NerdJokes Slack Bot - How To, Customer Support, Terms, and Privacy Policy",
194
- "keywords": ""
195
- }, {
196
- "name": "Stkr",
197
- "path": "/stkr",
198
- "title": "Pixelated Technologies Stkr",
199
- "description": "Stkr Slack Bot - How To, Customer Support, Terms, and Privacy Policy",
200
- "keywords": ""
201
- }, {
202
- "name": "Form",
203
- "path": "/form",
204
- "title": "Pixelated Technologies Form",
205
- "description": "Test my Form Builder, Form Components, and Form Validations",
206
- "keywords": ""
207
- }, {
208
- "name": "Form Build",
209
- "path": "/form/build",
210
- "title": "Pixelated Technologies Form Builder",
211
- "description": "Build your own form with my Form Builder",
212
- "keywords": ""
213
- }, {
214
- "name": "Form Extract",
215
- "path": "/form/extract",
216
- "title": "Pixelated Technologies Form Extract",
217
- "description": "Extract the JSON needed from a live site to use my Form Builder",
218
- "keywords": ""
219
- }
220
- ]
221
- }, {
222
- "name": "Legal",
223
- "routes": [
224
- {
225
- "name": "Terms of Service",
226
- "path": "/terms",
227
- "title": "Pixelated Technologies Terms of Service",
228
- "description": "Pixelated Technologies Terms of Service",
229
- "keywords": "pixelated, terms of service"
230
- }, {
231
- "name": "Privacy Policy",
232
- "path": "/privacy",
233
- "title": "Pixelated Technologies Privacy Policy",
234
- "description": "Pixelated Technologies Privacy Policy",
235
- "keywords": "pixelated, privacy policy, data retention"
236
- }
237
- ]
238
- }
239
- ]
2
+ "siteInfo": {
3
+ "name": "Pixelated Technologies",
4
+ "author": "Brian Whaley",
5
+ "description": "Custom web development and digital design agency specializing in React, Next.js, and modern web technologies",
6
+ "keywords": "pixelated, web development, react, next.js, custom websites, digital design, small business",
7
+ "url": "https://pixelated.tech",
8
+ "email": "info@pixelated.tech",
9
+ "favicon": "/favicon.ico",
10
+ "favicon_sizes": "64x64 32x32 24x24 16x16",
11
+ "favicon_type": "image/x-icon",
12
+ "theme_color": "#369",
13
+ "background_color": "#ffffff",
14
+ "default_locale": "en",
15
+ "display": "standalone",
16
+ "image": "/images/pix/pix-bg-512.gif",
17
+ "image_height": "512",
18
+ "image_width": "512",
19
+ "telephone": "+1-973-710-8008",
20
+ "address": {
21
+ "streetAddress": "10 Jade Circle",
22
+ "addressLocality": "Denville",
23
+ "addressRegion": "NJ",
24
+ "postalCode": "07834",
25
+ "addressCountry": "US"
26
+ },
27
+ "priceRange": "$$",
28
+ "sameAs": [
29
+ "https://www.linkedin.com/in/brianwhaley",
30
+ "https://github.com/brianwhaley",
31
+ "https://twitter.com/brianwhaley"
32
+ ]
33
+ },
34
+ "visualdesign": {
35
+ "primary-color": { "value": "#369", "type": "color", "group": "palette", "label": "Primary color" },
36
+ "secondary-color": { "value": "#BCD", "type": "color", "group": "palette", "label": "Secondary color" },
37
+ "accent1-color": { "value": "#CCC", "type": "color", "group": "palette", "label": "Accent color 1" },
38
+ "accent2-color": { "value": "#EEE", "type": "color", "group": "palette", "label": "Accent color 2" },
39
+ "bg-color": { "value": "#ffffff", "type": "color", "group": "palette", "label": "Background color" },
40
+ "text-color": { "value": "#000000", "type": "color", "group": "palette", "label": "Font color" },
41
+ "header-font": { "value": "\"Montserrat\", Verdana, sans-serif", "type": "font", "group": "typography", "label": "Header font" },
42
+ "body-font": { "value": "\"Roboto\", Arial, sans-serif", "type": "font", "group": "typography", "label": "Body font" },
43
+ "font-size1-min": { "value": "2.00rem", "type": "size", "group": "typography", "label": "Font size 1 min" },
44
+ "font-size1-max": { "value": "3.00rem", "type": "size", "group": "typography", "label": "Font size 1 max" },
45
+ "font-size2-min": { "value": "1.35rem", "type": "size", "group": "typography", "label": "Font size 2 min" },
46
+ "font-size2-max": { "value": "1.75rem", "type": "size", "group": "typography", "label": "Font size 2 max" },
47
+ "font-size3-min": { "value": "1.17rem", "type": "size", "group": "typography", "label": "Font size 3 min" },
48
+ "font-size3-max": { "value": "1.35rem", "type": "size", "group": "typography", "label": "Font size 3 max" },
49
+ "font-size4-min": { "value": "1.00rem", "type": "size", "group": "typography", "label": "Font size 4 min" },
50
+ "font-size4-max": { "value": "1.25rem", "type": "size", "group": "typography", "label": "Font size 4 max" },
51
+ "font-size5-min": { "value": "0.83rem", "type": "size", "group": "typography", "label": "Font size 5 min" },
52
+ "font-size5-max": { "value": "1.00rem", "type": "size", "group": "typography", "label": "Font size 5 max" },
53
+ "font-size6-min": { "value": "0.67rem", "type": "size", "group": "typography", "label": "Font size 6 min" },
54
+ "font-size6-max": { "value": "0.85rem", "type": "size", "group": "typography", "label": "Font size 6 max" },
55
+ "font-min-screen": { "value": "375px", "type": "size", "group": "typography", "label": "Font min screen" },
56
+ "font-max-screen": { "value": "1440px", "type": "size", "group": "typography", "label": "Font max screen" }
57
+ },
58
+ "routes": [
59
+ {
60
+ "name": "Home",
61
+ "path": "/",
62
+ "title": "Pixelated Technologies Home",
63
+ "description": "Pixelated Technologies offers a wide varity of products and services, including custom web development for small businesses, stock photography, touchup services, home design and remodeling, and more.",
64
+ "keywords": "pixelated, web development, small business, stock photography, home redesign, remodeling, social media"
65
+ } , {
66
+ "name": "About Me",
67
+ "routes": [
68
+ {
69
+ "name": "Resume",
70
+ "path": "/resume",
71
+ "title": "Brian Whaley - Resume",
72
+ "description": "View the resume of Brian Whaley",
73
+ "keywords": "brian whaley, resume, curriculum vitae, professional summary, contact information, education, skills, qualifications, work history, projects, voluteer work, certifications, honors and awards, training and conferences, rererences"
74
+ } , {
75
+ "name": "ReadMe",
76
+ "path": "/readme",
77
+ "title": "Brian Whaley - ReadMe",
78
+ "description": "Every good piece of software needs a readme. So do people.",
79
+ "keywords": "brian whaley, readme, management style"
80
+ } , {
81
+ "name": "Family Recipes",
82
+ "path": "/recipes",
83
+ "title": "Brian Whaley - Recipes",
84
+ "description": "Pace / Barbano / Whaley Recipes through the ages",
85
+ "keywords": "family recipes, pace family, barbano family, whaley family, italian recipes"
86
+ }
87
+ ]
88
+ } , {
89
+ "name": "Web Development",
90
+ "routes": [
91
+ {
92
+ "name": "Work Overview",
93
+ "path": "/workoverview",
94
+ "title": "Brian Whaley - Work Overview",
95
+ "description": "An overview of my work experience, including my resume, a readme file, social media accounts, and personal family recipes." ,
96
+ "keywords": "pixelated, brian whaley, web development, custom, small business, global, high performance teams, digital products, technology strategy, highly available, e-commerce portal, web sites, web applications, onshore, offshore, hybrid teams"
97
+ } , {
98
+ "name": "Work Portfolio",
99
+ "path": "/workportfolio",
100
+ "title": "Brian Whaley - Work Portfolio",
101
+ "description": "A carousel gallery showing screenshots of some of the web properties I have worked on." ,
102
+ "keywords": "pixelated, brian whaley, carousel, gallery, screenshots, web development, work portfolio"
103
+ }
104
+ ]
105
+ } , {
106
+ "name": "Photography",
107
+ "routes": [
108
+ {
109
+ "name": "Photo Overview",
110
+ "path": "/photography",
111
+ "title": "PixelVivid - Photography",
112
+ "description": "An overview of the PixelVivid phtography portfolio.",
113
+ "keywords": "pixelvivid, photography, overview, gallery, carousel, social media"
114
+ } , {
115
+ "name": "Photo Gallery",
116
+ "path": "/photogallery",
117
+ "title": "PixelVivid - Photo Gallery",
118
+ "description": "A carousel of some of my best photographs throughout my life. They are primarily landscape photographs, macro photographs, and travel photographs. ",
119
+ "keywords": "pixelvivid, gallery, carousel, photographs, landscape, macro, travel"
120
+ } , {
121
+ "name": "Social Media",
122
+ "path": "/socialmedia",
123
+ "title": "PixelVivid - Social Media",
124
+ "description": "Links to all my digital footprints",
125
+ "keywords": "pixelvivid, social media, photography, stock photography, istock, shutterstock, blurb, shutterfly, x, twitter, 500px, flickr, instagram"
126
+ }
127
+ ]
128
+ } , {
129
+ "name" : "Custom Sunglasses",
130
+ "routes" : [
131
+ {
132
+ "name": "Customs Overview",
133
+ "path": "/customsunglasses",
134
+ "title": "PixelVivid - Custom Sunglasses",
135
+ "description": "A sampling of the custom sunglasses I paint in my spare time",
136
+ "keywords": "pixelvivid, custom sunglasses, oakley, refurbish, restore, custom paint, ebay, gallery, carousel"
137
+ } , {
138
+ "name": "Customs Gallery",
139
+ "path": "/customsgallery",
140
+ "title": "PixelVivid - Customs Gallery",
141
+ "description": "A carousel gallery of some of the paint styles I do on sunglasses, including marbles, splatters, drips, and repairs",
142
+ "keywords": "pixelvivid, gallery, carousel, custom paint, oakely, marble, splatter, drip, repair"
143
+ } , {
144
+ "name": "Customs on eBay",
145
+ "path": "/ebay",
146
+ "title": "PixelVivid - Customs on eBay",
147
+ "description": "Check out my store on ebay where I sell my custom sunglasses",
148
+ "keywords": "pixelvivid, online store, ecommerce, ebay, custom sunglasses"
149
+ } , {
150
+ "name": "Customs Request",
151
+ "path": "/requests",
152
+ "title": "PixelVivid - Customs Request",
153
+ "description": "Request some custom sunglass work for yourself.",
154
+ "keywords": "pixelvivid, online store, ecommerce, ebay, custom sunglasses, requests, form"
155
+ } , {
156
+ "name": "My Customs",
157
+ "path": "/mycustoms",
158
+ "title": "PixelVivid - My Customs",
159
+ "description": "These are pictures of the custom sunglasses in my personal collection.",
160
+ "keywords": "pixelvivid, custom sunglasses, personal collection, collection"
161
+ }
162
+ ]
163
+ } , {
164
+ "name": "Home Design",
165
+ "routes": [
166
+ {
167
+ "name": "Design Overview",
168
+ "path": "/homedesign",
169
+ "title": "PixelVivid - Home Design",
170
+ "description": "Overview of the home design and remodeling work our designers have worked on.",
171
+ "keywords": "pixelvivid, home design, home remodeling "
172
+ } , {
173
+ "name": "Design Gallery",
174
+ "path": "/designgallery",
175
+ "title": "PixelVivid - Design Gallery",
176
+ "description": "A gallery of photos from the home design and remodeling projects that our designers have worked on",
177
+ "keywords": "pixelvivid, home design, home remodeling, gallery, carousel"
178
+ }
179
+ ]
180
+ } , {
181
+ "name": "Sandbox",
182
+ "routes": [
183
+ {
184
+ "name": "Buzzword Bingo",
185
+ "path": "/buzzwordbingo",
186
+ "title": "Pixelated Technologies Buzzword Bingo",
187
+ "description": "Buzzword Bingo is a game that is played in meetings to help keep you awake.",
188
+ "keywords": ""
189
+ } , {
190
+ "name": "NerdJokes",
191
+ "path": "/nerdjokes",
192
+ "title": "Pixelated Technologies NerdJokes",
193
+ "description": "NerdJokes Slack Bot - How To, Customer Support, Terms, and Privacy Policy",
194
+ "keywords": ""
195
+ } , {
196
+ "name": "Stkr",
197
+ "path": "/stkr",
198
+ "title": "Pixelated Technologies Stkr",
199
+ "description": "Stkr Slack Bot - How To, Customer Support, Terms, and Privacy Policy",
200
+ "keywords": ""
201
+ } , {
202
+ "name": "Form",
203
+ "path": "/form",
204
+ "title": "Pixelated Technologies Form",
205
+ "description": "Test my Form Builder, Form Components, and Form Validations",
206
+ "keywords": ""
207
+ } , {
208
+ "name": "Form Build",
209
+ "path": "/form/build",
210
+ "title": "Pixelated Technologies Form Builder",
211
+ "description": "Build your own form with my Form Builder",
212
+ "keywords": ""
213
+ } , {
214
+ "name": "Form Extract",
215
+ "path": "/form/extract",
216
+ "title": "Pixelated Technologies Form Extract",
217
+ "description": "Extract the JSON needed from a live site to use my Form Builder",
218
+ "keywords": ""
219
+ }
220
+ ]
221
+ }, {
222
+ "name": "Legal",
223
+ "routes": [
224
+ {
225
+ "name": "Terms of Service",
226
+ "path": "/terms",
227
+ "title": "Pixelated Technologies Terms of Service",
228
+ "description": "Pixelated Technologies Terms of Service",
229
+ "keywords": "pixelated, terms of service"
230
+ } , {
231
+ "name": "Privacy Policy",
232
+ "path": "/privacy",
233
+ "title": "Pixelated Technologies Privacy Policy",
234
+ "description": "Pixelated Technologies Privacy Policy",
235
+ "keywords": "pixelated, privacy policy, data retention"
236
+ }
237
+ ]
238
+ }
239
+ ]
240
240
  }