Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 0059664

Browse files
committed
Merge branch 'staging' into develop
2 parents f0918f5 + 094a337 commit 0059664

File tree

4 files changed

+167
-74
lines changed

4 files changed

+167
-74
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@
5151
"babel-loader": "^8.2.2",
5252
"chromatic": "^5.5.0",
5353
"deepmerge": "^4.2.2",
54-
"eslint": "^7.16.0",
54+
"eslint": "^7.17.0",
5555
"eslint-config-prettier": "^7.1.0",
5656
"eslint-plugin-import": "^2.22.1",
5757
"eslint-plugin-jsx-a11y": "^6.4.1",
5858
"eslint-plugin-prettier": "^3.3.0",
59-
"eslint-plugin-react": "^7.21.5",
59+
"eslint-plugin-react": "^7.22.0",
6060
"eslint-plugin-react-hooks": "^4.2.0",
6161
"graphql": "^15.4.0",
6262
"husky": "^4.3.6",
6363
"lint-staged": "^10.5.3",
64-
"next-sitemap": "^1.3.22",
64+
"next-sitemap": "^1.3.29",
6565
"postcss-flexbugs-fixes": "^4.2.1",
6666
"postcss-preset-env": "^6.7.0",
6767
"prettier": "^2.2.1",

styles/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
html,
66
body {
7-
@apply dark:bg-gray-900 dark:text-white;
7+
@apply dark:bg-grey-darkest dark:text-white;
88
}

tailwind.config.js

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,151 @@ module.exports = {
1818
fontFamily: {
1919
sans: ['Libre Franklin', 'sans-serif'],
2020
serif: ['Libre Baskerville', 'serif']
21+
},
22+
fontSize: {
23+
'root-em': '16px',
24+
uber: '7rem',
25+
hero: '5rem',
26+
body: '1.125rem',
27+
sm: '1rem',
28+
caption: '0.875rem',
29+
xs: '0.75rem',
30+
xxs: '0.625rem',
31+
h1: '3rem',
32+
h2: '2.25rem',
33+
h3: '1.875rem',
34+
h4: '1.625rem',
35+
h5: '1.25rem',
36+
lead: '1.5rem'
37+
},
38+
spacing: {
39+
// The px values for spacing are equivalent to their keys.
40+
px: '1px',
41+
0: '0',
42+
4: '0.25rem',
43+
8: '0.5rem',
44+
12: '0.75rem',
45+
16: '1rem',
46+
20: '1.25rem',
47+
24: '1.5rem',
48+
28: '1.75rem',
49+
32: '2rem',
50+
36: '2.25rem',
51+
40: '2.5rem',
52+
44: '2.75rem',
53+
48: '3rem',
54+
52: '3.25rem',
55+
56: '3.5rem',
56+
60: '3.75rem',
57+
64: '4rem',
58+
68: '4.25rem',
59+
72: '4.5rem',
60+
76: '4.75rem',
61+
80: '5rem'
62+
},
63+
colors: {
64+
primary: {
65+
lightest: '#FCD0C4',
66+
lighter: '#F9A189',
67+
light: '#F78161',
68+
DEFAULT: '#F5623A',
69+
dark: '#DD5834',
70+
darker: '#AC4529',
71+
darkest: '#622717'
72+
},
73+
secondary: {
74+
lightest: '#D2E9FA',
75+
lighter: '#A5D4F5',
76+
light: '#62B3EE',
77+
DEFAULT: '#1F93E7',
78+
dark: '#1976B9',
79+
darker: '#104A74',
80+
darkest: '#092C45'
81+
},
82+
tertiary: {
83+
lightest: '#ECECEC',
84+
lighter: '#C6C6C6',
85+
light: '#7A7A7A',
86+
DEFAULT: '#414141',
87+
dark: '#343434',
88+
darker: '#272727',
89+
darkest: '#1A1A1A'
90+
},
91+
success: {
92+
lightest: '#D1EEDD',
93+
lighter: '#A3DDBC',
94+
light: '#5DC389',
95+
DEFAULT: '#18A957',
96+
dark: '#11763D',
97+
darker: '#0A4423',
98+
darkest: '#052211'
99+
},
100+
warning: {
101+
lightest: '#FFF1D7',
102+
lighter: '#FFE4AF',
103+
light: '#FFCF74',
104+
DEFAULT: '#FFBB38',
105+
dark: '#B38327',
106+
darker: '#664B16',
107+
darkest: '#33250B'
108+
},
109+
error: {
110+
lightest: '#F9D0D9',
111+
lighter: '#F2A2B3',
112+
light: '#E95C7B',
113+
DEFAULT: '#DF1642',
114+
dark: '#9C0F2E',
115+
darker: '#2D040D',
116+
darkest: '#2D040D'
117+
},
118+
grey: {
119+
lightest: '#FCFCFC',
120+
lighter: '#E6E6E6',
121+
light: '#939393',
122+
DEFAULT: '#666666',
123+
dark: '#5C5C5C',
124+
darker: '#333333',
125+
darkest: '#212121'
126+
},
127+
white: {
128+
DEFAULT: 'rgba(255,255,255,1)',
129+
90: 'rgba(255,255,255,0.9)',
130+
80: 'rgba(255,255,255,0.8)',
131+
70: 'rgba(255,255,255,0.7)',
132+
60: 'rgba(255,255,255,0.6)',
133+
50: 'rgba(255,255,255,0.5)',
134+
40: 'rgba(255,255,255,0.4)',
135+
30: 'rgba(255,255,255,0.3)',
136+
20: 'rgba(255,255,255,0.2)',
137+
10: 'rgba(255,255,255,0.1)',
138+
5: 'rgba(255,255,255,0.05)'
139+
},
140+
brand: {
141+
android: '#A4C639',
142+
behance: '#1769FF',
143+
dribble: '#EA4C89',
144+
dropbox: '#0061FF',
145+
facebook: '#3B5998',
146+
github: '#4078C0',
147+
hangouts: '#23A061',
148+
instagram: '#4C5FD7',
149+
linkedin: '#0077B5',
150+
medium: '#292929',
151+
meetup: '#EA2245',
152+
messenger: '#1787FB',
153+
paypal: '#253B80',
154+
pinterest: '#CB2027',
155+
producthunt: '#D85537',
156+
shopify: '#96BE4F',
157+
skype: '#00AFF0',
158+
slack: '#6ECADC',
159+
spotify: '#1ED760',
160+
trello: '#117ABD',
161+
twitter: '#00B6F1',
162+
vimeo: '#45BBFF',
163+
whatsapp: '#25E47A',
164+
youtube: '#FF0000'
165+
}
21166
}
22167
}
23168
},

yarn.lock

Lines changed: 18 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -2874,7 +2874,7 @@ accepts@~1.3.7:
28742874
mime-types "~2.1.24"
28752875
negotiator "0.6.2"
28762876

2877-
acorn-jsx@^5.1.0, acorn-jsx@^5.2.0:
2877+
acorn-jsx@^5.1.0:
28782878
version "5.2.0"
28792879
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe"
28802880
integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==
@@ -2974,17 +2974,7 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
29742974
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
29752975
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
29762976

2977-
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4:
2978-
version "6.12.4"
2979-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234"
2980-
integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==
2981-
dependencies:
2982-
fast-deep-equal "^3.1.1"
2983-
fast-json-stable-stringify "^2.0.0"
2984-
json-schema-traverse "^0.4.1"
2985-
uri-js "^4.2.2"
2986-
2987-
ajv@^6.12.5:
2977+
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
29882978
version "6.12.6"
29892979
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
29902980
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -5825,10 +5815,10 @@ eslint-plugin-react-hooks@^4.2.0:
58255815
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
58265816
integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
58275817

5828-
eslint-plugin-react@^7.21.5:
5829-
version "7.21.5"
5830-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz#50b21a412b9574bfe05b21db176e8b7b3b15bff3"
5831-
integrity sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==
5818+
eslint-plugin-react@^7.22.0:
5819+
version "7.22.0"
5820+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269"
5821+
integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==
58325822
dependencies:
58335823
array-includes "^3.1.1"
58345824
array.prototype.flatmap "^1.2.3"
@@ -5875,10 +5865,10 @@ eslint-visitor-keys@^2.0.0:
58755865
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
58765866
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
58775867

5878-
eslint@^7.16.0:
5879-
version "7.16.0"
5880-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.16.0.tgz#a761605bf9a7b32d24bb7cde59aeb0fd76f06092"
5881-
integrity sha512-iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw==
5868+
eslint@^7.17.0:
5869+
version "7.17.0"
5870+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.17.0.tgz#4ccda5bf12572ad3bf760e6f195886f50569adb0"
5871+
integrity sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==
58825872
dependencies:
58835873
"@babel/code-frame" "^7.0.0"
58845874
"@eslint/eslintrc" "^0.2.2"
@@ -5923,16 +5913,7 @@ esm@^3.2.25:
59235913
resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
59245914
integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
59255915

5926-
espree@^7.3.0:
5927-
version "7.3.0"
5928-
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
5929-
integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
5930-
dependencies:
5931-
acorn "^7.4.0"
5932-
acorn-jsx "^5.2.0"
5933-
eslint-visitor-keys "^1.3.0"
5934-
5935-
espree@^7.3.1:
5916+
espree@^7.3.0, espree@^7.3.1:
59365917
version "7.3.1"
59375918
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
59385919
integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
@@ -7549,13 +7530,6 @@ is-ci@^2.0.0:
75497530
dependencies:
75507531
ci-info "^2.0.0"
75517532

7552-
is-core-module@^2.0.0:
7553-
version "2.0.0"
7554-
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.0.0.tgz#58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d"
7555-
integrity sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==
7556-
dependencies:
7557-
has "^1.0.3"
7558-
75597533
is-core-module@^2.1.0:
75607534
version "2.1.0"
75617535
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946"
@@ -8103,15 +8077,7 @@ jsprim@^1.2.2:
81038077
json-schema "0.2.3"
81048078
verror "1.10.0"
81058079

8106-
"jsx-ast-utils@^2.4.1 || ^3.0.0":
8107-
version "3.0.0"
8108-
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.0.0.tgz#0f49d5093bafa4b45d3fe02147d8b40ffc6c7438"
8109-
integrity sha512-sPuicm6EPKYI/UnWpOatvg4pI50qaBo4dSOMGUPutmJ26ttedFKXr0It0XXPk4HKnQ/1X0st4eSS2w2jhFk9Ow==
8110-
dependencies:
8111-
array-includes "^3.1.1"
8112-
object.assign "^4.1.1"
8113-
8114-
jsx-ast-utils@^3.1.0:
8080+
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
81158081
version "3.1.0"
81168082
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz#642f1d7b88aa6d7eb9d8f2210e166478444fa891"
81178083
integrity sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==
@@ -9045,10 +9011,10 @@ nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0:
90459011
resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61"
90469012
integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
90479013

9048-
next-sitemap@^1.3.22:
9049-
version "1.3.22"
9050-
resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-1.3.22.tgz#3350a62ab21aaf3ca19b59836170b6436a4d5e10"
9051-
integrity sha512-R7oAkFJYErR4ese5ejq2eKGCk+EgIFoOCqdQdMYrjeo5ckIG+ewLElFaD1wm9OgdXTZAqpmIZ4U3ninIxtoxBg==
9014+
next-sitemap@^1.3.29:
9015+
version "1.3.29"
9016+
resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-1.3.29.tgz#3ab04a2544ec2dab0a15c9eb9bf065cc60657752"
9017+
integrity sha512-cha6WbQyBvPi82OsfWfCc40D9U6uoET1DnkgXRwETiUEQr35hcBxcahVXAKbfNvuELC26V11C6k5ZmvvJNRYjw==
90529018
dependencies:
90539019
"@corex/deepmerge" "^2.5.3"
90549020
matcher "^3.0.0"
@@ -11317,15 +11283,7 @@ resolve-url@^0.2.1:
1131711283
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
1131811284
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
1131911285

11320-
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.3.2:
11321-
version "1.18.1"
11322-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130"
11323-
integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==
11324-
dependencies:
11325-
is-core-module "^2.0.0"
11326-
path-parse "^1.0.6"
11327-
11328-
resolve@^1.19.0:
11286+
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.3.2:
1132911287
version "1.19.0"
1133011288
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
1133111289
integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
@@ -12370,17 +12328,7 @@ symbol.prototype.description@^1.0.0:
1237012328
es-abstract "^1.17.0-next.1"
1237112329
has-symbols "^1.0.1"
1237212330

12373-
table@^6.0.3:
12374-
version "6.0.3"
12375-
resolved "https://registry.yarnpkg.com/table/-/table-6.0.3.tgz#e5b8a834e37e27ad06de2e0fda42b55cfd8a0123"
12376-
integrity sha512-8321ZMcf1B9HvVX/btKv8mMZahCjn2aYrDlpqHaBFCfnox64edeH9kEid0vTLTRR8gWR2A20aDgeuTTea4sVtw==
12377-
dependencies:
12378-
ajv "^6.12.4"
12379-
lodash "^4.17.20"
12380-
slice-ansi "^4.0.0"
12381-
string-width "^4.2.0"
12382-
12383-
table@^6.0.4:
12331+
table@^6.0.3, table@^6.0.4:
1238412332
version "6.0.4"
1238512333
resolved "https://registry.yarnpkg.com/table/-/table-6.0.4.tgz#c523dd182177e926c723eb20e1b341238188aa0d"
1238612334
integrity sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==

0 commit comments

Comments
 (0)