Initial commit

This commit is contained in:
dk
2025-12-29 15:12:38 +02:00
commit d4e8ab918a
27 changed files with 2362 additions and 0 deletions

27
tailwind.config.js Normal file
View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'linkedin-blue': '#0a66c2',
'linkedin-dark-blue': '#004182',
'linkedin-light-blue': '#378fe9',
'linkedin-gray': '#666666',
'linkedin-light-gray': '#f3f2ef',
'linkedin-border': '#e6e6e6',
'linkedin-text': '#000000e6'
},
fontFamily: {
'sans': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'sans-serif']
},
spacing: {
'18': '4.5rem',
'88': '22rem'
}
},
},
plugins: [],
}