@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.
- package/README.COMPONENTS.md +126 -0
- package/README.md +15 -9
- package/dist/components/admin/componentusage/componentAnalysis.js +144 -0
- package/dist/components/admin/componentusage/componentDiscovery.js +85 -0
- package/dist/components/admin/deploy/deployment.integration.js +170 -0
- package/dist/components/admin/site-health/google-api-auth.js +69 -0
- package/dist/components/admin/site-health/seo-metrics.config.json +265 -0
- package/dist/components/admin/site-health/site-health-accessibility.js +158 -0
- package/dist/components/admin/site-health/site-health-axe-core.integration.js +119 -0
- package/dist/components/admin/site-health/site-health-axe-core.js +53 -0
- package/dist/components/admin/site-health/site-health-cache.js +23 -0
- package/dist/components/admin/site-health/site-health-core-web-vitals.integration.js +208 -0
- package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +38 -0
- package/dist/components/admin/site-health/site-health-github.integration.js +81 -0
- package/dist/components/admin/site-health/site-health-github.js +34 -0
- package/dist/components/admin/site-health/site-health-google-analytics.integration.js +112 -0
- package/dist/components/admin/site-health/site-health-google-analytics.js +43 -0
- package/dist/components/admin/site-health/site-health-google-search-console.integration.js +118 -0
- package/dist/components/admin/site-health/site-health-google-search-console.js +43 -0
- package/dist/components/admin/site-health/site-health-indicators.js +71 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.integration.js +578 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.js +204 -0
- package/dist/components/admin/site-health/site-health-overview.js +65 -0
- package/dist/components/admin/site-health/site-health-performance.js +191 -0
- package/dist/components/admin/site-health/site-health-security.integration.js +109 -0
- package/dist/components/admin/site-health/site-health-security.js +169 -0
- package/dist/components/admin/site-health/site-health-seo.js +124 -0
- package/dist/components/admin/site-health/site-health-template.js +62 -0
- package/dist/components/admin/site-health/site-health-types.js +1 -0
- package/dist/components/admin/site-health/site-health-uptime.integration.js +29 -0
- package/dist/components/admin/site-health/site-health-uptime.js +30 -0
- package/dist/components/admin/site-health/site-health.css +427 -0
- package/dist/components/admin/sites/sites.integration.js +117 -0
- package/dist/components/cms/contentful.management.js +104 -0
- package/dist/components/cms/hubspot.components.js +3 -3
- package/dist/components/config/config.client.js +21 -10
- package/dist/components/general/table.js +3 -1
- package/dist/components/seo/googleanalytics.js +1 -2
- package/dist/components/shoppingcart/shipping.from.json +101 -0
- package/dist/components/shoppingcart/shipping.parcel.json +112 -0
- package/dist/components/shoppingcart/shipping.to.json +422 -0
- package/dist/components/shoppingcart/shoppingCartDiscountCodes.json +26 -0
- package/dist/components/shoppingcart/shoppingcart.components.js +1 -1
- package/dist/components/sitebuilder/config/ConfigBuilder.js +36 -140
- package/dist/components/sitebuilder/config/siteinfo-form.json +200 -0
- package/dist/components/sitebuilder/config/visualdesignform.json +244 -0
- package/dist/components/structured/buzzwordbingo.js +3 -2
- package/dist/data/404-data.json +128 -102
- package/dist/data/flickr.json +25 -0
- package/dist/data/form.json +368 -368
- package/dist/data/recipes.json +3251 -3251
- package/dist/data/references.json +138 -137
- package/dist/data/requestform.json +111 -0
- package/dist/data/requests.json +136 -135
- package/dist/data/resume.json +2573 -2575
- package/dist/data/routes.json +238 -238
- package/dist/data/routes2.json +141 -140
- package/dist/index.js +16 -3
- package/dist/index.server.js +36 -15
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts +35 -0
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts.map +1 -0
- package/dist/types/components/admin/componentusage/componentDiscovery.d.ts +10 -0
- package/dist/types/components/admin/componentusage/componentDiscovery.d.ts.map +1 -0
- package/dist/types/components/admin/deploy/deployment.integration.d.ts +26 -0
- package/dist/types/components/admin/deploy/deployment.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/google-api-auth.d.ts +37 -0
- package/dist/types/components/admin/site-health/google-api-auth.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts +63 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-cache.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-cache.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts +26 -0
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts +26 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts +46 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-indicators.d.ts +73 -0
- package/dist/types/components/admin/site-health/site-health-indicators.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +4 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts +34 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-security.integration.d.ts +29 -0
- package/dist/types/components/admin/site-health/site-health-security.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-types.d.ts +186 -0
- package/dist/types/components/admin/site-health/site-health-types.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts +10 -0
- package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts.map +1 -0
- package/dist/types/components/admin/sites/sites.integration.d.ts +40 -0
- package/dist/types/components/admin/sites/sites.integration.d.ts.map +1 -0
- package/dist/types/components/cms/contentful.management.d.ts +41 -0
- package/dist/types/components/cms/contentful.management.d.ts.map +1 -1
- package/dist/types/components/config/config.client.d.ts +1 -2
- package/dist/types/components/config/config.client.d.ts.map +1 -1
- package/dist/types/components/general/table.d.ts +1 -0
- package/dist/types/components/general/table.d.ts.map +1 -1
- package/dist/types/components/seo/googleanalytics.d.ts +1 -1
- package/dist/types/components/seo/googleanalytics.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +4 -4
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
- package/dist/types/components/structured/buzzwordbingo.d.ts +1 -1
- package/dist/types/components/structured/buzzwordbingo.d.ts.map +1 -1
- package/dist/types/components/structured/buzzwordbingo.words.d.ts +2 -0
- package/dist/types/components/structured/buzzwordbingo.words.d.ts.map +1 -0
- package/dist/types/index.d.ts +16 -3
- package/dist/types/index.server.d.ts +36 -13
- package/dist/types/stories/admin/preview.d.ts +12 -0
- package/dist/types/stories/admin/preview.d.ts.map +1 -0
- package/dist/types/stories/admin/site-health.stories.d.ts +65 -0
- package/dist/types/stories/admin/site-health.stories.d.ts.map +1 -0
- package/dist/types/stories/structured/buzzword-bingo.stories.d.ts +1 -1
- package/dist/types/stories/structured/buzzword-bingo.stories.d.ts.map +1 -1
- package/dist/types/tests/site-health-axe-core.test.d.ts +2 -0
- package/dist/types/tests/site-health-axe-core.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-cache.test.d.ts +2 -0
- package/dist/types/tests/site-health-cache.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-indicators.test.d.ts +2 -0
- package/dist/types/tests/site-health-indicators.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-overview.test.d.ts +2 -0
- package/dist/types/tests/site-health-overview.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-template.test.d.ts +2 -0
- package/dist/types/tests/site-health-template.test.d.ts.map +1 -0
- package/dist/types/tests/sites.integration.test.d.ts +2 -0
- package/dist/types/tests/sites.integration.test.d.ts.map +1 -0
- package/package.json +15 -9
- package/dist/data/shipping.to.json +0 -422
- package/dist/data/siteinfo-form.json +0 -200
- package/dist/data/visualdesignform.json +0 -244
- package/dist/types/data/buzzwords.d.ts +0 -2
- package/dist/types/data/buzzwords.d.ts.map +0 -1
- /package/dist/{data/buzzwords.js → components/structured/buzzwordbingo.words.js} +0 -0
|
@@ -3,6 +3,7 @@ import { useState, useEffect } from 'react';
|
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
4
|
import "../../css/pixelated.grid.scss";
|
|
5
5
|
import './buzzwordbingo.css';
|
|
6
|
+
import { buzzwords as defaultBuzzwords } from './buzzwordbingo.words';
|
|
6
7
|
function getBingoWords(arr, x) {
|
|
7
8
|
var myBingoWords = [...arr].sort(() => Math.random() - 0.5); // Shuffle the array
|
|
8
9
|
myBingoWords = myBingoWords.slice(0, x); // Return the first x elements
|
|
@@ -10,10 +11,10 @@ function getBingoWords(arr, x) {
|
|
|
10
11
|
return myBingoWords;
|
|
11
12
|
}
|
|
12
13
|
BuzzwordBingo.propTypes = {
|
|
13
|
-
buzzwords: PropTypes.array
|
|
14
|
+
buzzwords: PropTypes.array,
|
|
14
15
|
};
|
|
15
16
|
export function BuzzwordBingo(props) {
|
|
16
|
-
const buzzwords = props.buzzwords;
|
|
17
|
+
const buzzwords = props.buzzwords || defaultBuzzwords;
|
|
17
18
|
const myBingoHeaders = ["B", "I", "N", "G", "O"];
|
|
18
19
|
const [bingoWords, setBingoWords] = useState([]);
|
|
19
20
|
useEffect(() => {
|
package/dist/data/404-data.json
CHANGED
|
@@ -1,104 +1,130 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
2
|
+
"images" : [
|
|
3
|
+
|
|
4
|
+
{ "img": "https://static.vecteezy.com/system/resources/previews/030/965/305/large_2x/image-of-a-broken-glass-window-on-a-black-background-photo.jpg",
|
|
5
|
+
"text": "You Broke It.",
|
|
6
|
+
"description": "A broken glass window on a black background"
|
|
7
|
+
},
|
|
8
|
+
|
|
9
|
+
{ "img": "https://t4.ftcdn.net/jpg/03/27/16/69/360_F_327166972_dACgEyWJtXxCshZRKCah4zutflLTyUER.jpg",
|
|
10
|
+
"text": "You found the easter eggs.",
|
|
11
|
+
"description": "Collection of colorful easter eggs"
|
|
12
|
+
},
|
|
13
|
+
|
|
14
|
+
{ "img": "https://cdn.betakit.com/wp-content/uploads/2014/06/Screen-Shot-2014-06-16-at-10.34.37-AM.png",
|
|
15
|
+
"text": "You have reached the End of the Internet",
|
|
16
|
+
"description": "A computer screen showing the end of the internet popup"
|
|
17
|
+
},
|
|
18
|
+
|
|
19
|
+
{ "img": "https://css-tricks.com/wp-content/themes/CSS-Tricks-19/images/ripped.jpg",
|
|
20
|
+
"text": "Looks like we broke it",
|
|
21
|
+
"description": "A piece of code broken inside an IDE"
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
{ "img": "https://content-cdn.tips-and-tricks.co/wp-content/uploads/2023/01/03130637/Unplug.png",
|
|
25
|
+
"text": "This Page is Temporarily Unplugged.",
|
|
26
|
+
"description": "Power cable unplugged from an outlet"
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
{ "img": "https://churchconsulting.org/wp-content/uploads/2023/04/gps_1.png",
|
|
30
|
+
"text": "Recalculating...",
|
|
31
|
+
"description": "Garmin GPS screen recalculating route"
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
{ "img": "https://cdn.mos.cms.futurecdn.net/s7ciDuGDKyYCHhMgG3guXY.jpg",
|
|
35
|
+
"text": "This page has crossed the event horizon.",
|
|
36
|
+
"description": "An artistic rendition of a black hole in space"
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
{ "img": "https://ritholtz.com/wp-content/uploads/2020/03/dontpanic.jpg",
|
|
40
|
+
"text": "Mostly Harmless.",
|
|
41
|
+
"description": "An image of the Hithchiker's Guide to the Galaxy Green Guy"
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
{ "img": "https://i1.sndcdn.com/avatars-HVWQy6EEIVZS0UKH-mwgAHw-t1080x1080.jpg",
|
|
45
|
+
"text": "Dont Panic.",
|
|
46
|
+
"description": "An image of Earth - Mostly Harmless"
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
{ "img": "https://cdn.mos.cms.futurecdn.net/XjFKahrnFjkVmR6W3Mh9mS-600-80.jpg.webp",
|
|
50
|
+
"text": "That Link is Missing",
|
|
51
|
+
"description": "An image of the evolution of man"
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
{ "img": "https://www.swissinfo.ch/content/wp-content/uploads/sites/13/2024/02/552212960_highres.jpg",
|
|
55
|
+
"text": "This page is buried.",
|
|
56
|
+
"description": "Survivor being dug out by an avalanche"
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
{ "img": "https://www.techexplorist.com/wp-content/uploads/2018/08/bermuda-triangle.jpg",
|
|
60
|
+
"text": "This page is in the Bermuda Triangle.",
|
|
61
|
+
"description": "Hole in the ocean with ships getting pulled in"
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
{ "img": "https://t4.ftcdn.net/jpg/00/42/59/97/360_F_42599724_Zzb2W6TG3VZFdHiSCeJF79FTPrId6lvW.jpg",
|
|
65
|
+
"text": "Wherever you go, there you are.",
|
|
66
|
+
"description": "Chiseled marble text"
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
{ "img": "https://speckyboy.com/wp-content/uploads/2022/09/wp-plugin-support-thumb.jpg",
|
|
70
|
+
"text": "You're not lost.",
|
|
71
|
+
"description": "Sign on the side of a building"
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
{ "img": "https://cms-assets.themuse.com/media/lead/6626.jpg",
|
|
75
|
+
"text": "No Outlet.",
|
|
76
|
+
"description": "Street sign saying Dead End"
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
{ "img": "https://www.photos-public-domain.com/wp-content/uploads/2015/09/road-closed-detour-sign.jpg",
|
|
80
|
+
"text": "Dead End.",
|
|
81
|
+
"description": "Road closed detour sign"
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
{ "img": "https://lumiere-a.akamaihd.net/v1/images/databank_jedimindtrick_01_169_a491266d.jpeg",
|
|
85
|
+
"text": "This is not the page you were looking for.",
|
|
86
|
+
"description": "Obi-Wan Kenobi using Jedi mind trick"
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
{ "img": "https://images.squarespace-cdn.com/content/v1/52f17606e4b0c058f609ee0e/1437768478051-DTM26ZMQNZLXGJ3GVBXS/image-asset.jpeg",
|
|
90
|
+
"text": "You Shall Not Pass.",
|
|
91
|
+
"description": "Gandalf blocking the path of the Balrog"
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
{ "img": "https://static0.polygonimages.com/wordpress/wp-content/uploads/chorus/uploads/chorus_asset/file/23003314/4k_fellowship_movie_screencaps.com_23524.jpg",
|
|
95
|
+
"text": "You Shall Not Pass.",
|
|
96
|
+
"description": "Gandalf standing with his sword and staff"
|
|
97
|
+
},
|
|
98
|
+
|
|
99
|
+
{ "img": "https://wfumediaphiles.wordpress.com/wp-content/uploads/2018/11/53-48559-seinfeld-soup-nazi-1524772836.jpg",
|
|
100
|
+
"text": "No Soup For You.",
|
|
101
|
+
"description": "Yev Kassem The Soupman from Seinfeld"
|
|
102
|
+
},
|
|
103
|
+
|
|
104
|
+
{ "img": "https://media.npr.org/assets/img/2013/02/07/mrbean072way-7da3d67475a9f227ced239f0404c20c4316df5e1.jpg",
|
|
105
|
+
"text": "I'm Confused....",
|
|
106
|
+
"description": "Mr. Bean is Confused"
|
|
107
|
+
},
|
|
108
|
+
|
|
109
|
+
{ "img": "https://www.nationalreview.com/wp-content/uploads/2024/12/Buckaroo-Banzai.jpg",
|
|
110
|
+
"text": "No matter where you go, there you are.",
|
|
111
|
+
"description": "Buckaroo Banzai with microphone and guitar on stage"
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
{ "img": "https://i.ytimg.com/vi/xkThxevUSJs/maxresdefault.jpg",
|
|
115
|
+
"text": "Oops! Something went wrong.",
|
|
116
|
+
"description": "Britney Spears singing Oops I Did It again"
|
|
117
|
+
},
|
|
118
|
+
|
|
119
|
+
{ "img": "https://www.aaronreedphotography.com/images/xl/Bob-Ross-Portrait.jpg",
|
|
120
|
+
"text": "A Happy Accident has occured.",
|
|
121
|
+
"description": "Bob Ross painting a happy little tree"
|
|
122
|
+
},
|
|
123
|
+
|
|
124
|
+
{ "img": "https://f8n-ipfs-production.imgix.net/QmfFETmLaZSExHtby5ggtd5BtxRG8BfMvAKmise7dEQems/nft.png",
|
|
125
|
+
"text": "Success, Boy.",
|
|
126
|
+
"description": "Success Boy"
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
]
|
|
104
130
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"flickr" : [
|
|
3
|
+
{
|
|
4
|
+
"tag" : "pixelatedviewsgallery",
|
|
5
|
+
"album" : "pixelatedviewsgallery",
|
|
6
|
+
"photoset_id" : "72157712416706518"
|
|
7
|
+
},{
|
|
8
|
+
"tag" : "customsunglasses",
|
|
9
|
+
"album" : "customsunglasses",
|
|
10
|
+
"photoset_id" : "72177720326925753"
|
|
11
|
+
},{
|
|
12
|
+
"tag" : "btw-customsunglasses",
|
|
13
|
+
"album" : "btw-customsunglasses",
|
|
14
|
+
"photoset_id" : "72177720326903790"
|
|
15
|
+
},{
|
|
16
|
+
"tag" : "homedesign",
|
|
17
|
+
"album" : "homedesign",
|
|
18
|
+
"photoset_id" : "72177720326059353"
|
|
19
|
+
},{
|
|
20
|
+
"tag" : "workportfolio",
|
|
21
|
+
"album" : "workportfolio",
|
|
22
|
+
"photoset_id" : "72177720326903710"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|