mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-06 04:13:37 +00:00
Replace the icon-and-cards landing with a photographic hero that alternates between the Furi station and freight train photos, a single headline, and two compact glass cards that pin the background on hover. Below it: the corridor rail, one showcase mockup per portal (passenger trip search, freight live tracking), the existing stats and footer. - Add the official EDR logo as transparent green/white PNGs (lockup and mark), used in the header, footer and favicon - Switch to Plus Jakarta Sans and a palette keyed to the logo green - Split the page into components under src/components - Header links: Passenger, Freight, Publications
37 lines
933 B
JavaScript
37 lines
933 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// One palette for the whole railway: the green is sampled from the
|
|
// official logo, the dark inks and light surfaces come from the
|
|
// freight portal so the two public surfaces read as one brand.
|
|
edr: {
|
|
ink: "#0c1a2b",
|
|
"ink-2": "#10202f",
|
|
primary: "#008550",
|
|
"primary-dark": "#006b41",
|
|
light: "#34d399",
|
|
amber: "#f2a516",
|
|
surface: "#f7fafc",
|
|
border: "#e6ecf2",
|
|
muted: "#6b7c8e",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: [
|
|
'"Plus Jakarta Sans"',
|
|
"ui-sans-serif",
|
|
"system-ui",
|
|
"-apple-system",
|
|
"Segoe UI",
|
|
"Roboto",
|
|
"sans-serif",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|