Initial landing page

This commit is contained in:
Jose Selesan
2026-06-09 09:32:42 -03:00
commit 703d17cf2f
24 changed files with 621 additions and 0 deletions

27
tailwind.config.js Normal file
View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,njk,md,js}"],
theme: {
extend: {
colors: {
ink: "#071323",
muted: "#637083",
paper: "#f7f8fc",
line: "#dde3ed",
flame: "#f97316",
ember: "#b94700",
azure: "#006ee6",
navy: "#061832"
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
display: ["Rajdhani", "Inter", "ui-sans-serif", "system-ui", "sans-serif"]
},
boxShadow: {
soft: "0 18px 50px rgba(15, 35, 63, 0.12)",
panel: "0 22px 70px rgba(6, 24, 50, 0.22)"
}
}
},
plugins: []
};