initial skeleton for front

This commit is contained in:
Quentin Roussel
2024-03-23 16:34:13 +01:00
parent 2058414748
commit 46c6ce7af2
15 changed files with 5131 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
"orange" : "#F27127",
"white" : "#FFFFFF",
"gray" : "#333333",
"dark-blue" : "#13274A",
"light-blue" : "#2957A3",
}
},
fontFamily: {
sans: ["Inter", "sans-serif"],
serif: ["Merriweather", "serif"],
},
plugins: [],
};