first commit

This commit is contained in:
Urtzi Alfaro
2025-07-17 13:54:51 +02:00
parent 347ff51bd7
commit 5bb3e93da4
41 changed files with 10084 additions and 94 deletions

View File

@@ -0,0 +1,35 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
50: '#eff6ff',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
},
bakery: { // Existing bakery colors, can be potentially phased out or used as accents
brown: '#8B4513',
cream: '#FFF8DC',
wheat: '#F5DEB3',
},
pania: { // New PanIA brand colors
golden: '#F4A261', // Primary: Warm Golden - representing bread/warmth
blue: '#2A9D8F', // Secondary: Tech Blue - representing AI/innovation
brown: '#8B4513', // Accent: Deep Brown - representing traditional bakery
white: '#FFFFFF', // Neutral: Clean White
charcoal: '#333333', // Neutral: Charcoal
}
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
}