Initial commit

This commit is contained in:
Oliver Davies 2022-03-15 18:22:18 +00:00
commit 904a0b0bbf
26 changed files with 4847 additions and 0 deletions

24
tailwind.config.js Normal file
View file

@ -0,0 +1,24 @@
module.exports = {
theme: {
colors: {
primary: '#2AAAE1',
gray: '#666666',
secondary: '#064871',
white: '#FFFFFF',
},
extend: {
fontFamily: {
sans: [
"proxima-nova",
"Proxima Nova",
"Open Sans",
"Gill Sans MT",
"Gill Sans",
'Corbel',
'Arial',
'sans-serif',
]
}
}
}
}