d62bb8d3ad
Marketing website for Meezi platform: - Server-side rendered pages: home, demo, blog, pricing - RTL/Farsi layout with Vazirmatn font - SEO metadata and Open Graph tags - proxy.ts for Next.js 16 middleware convention - MEEZI_API_URL internal Docker network routing Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
40 lines
977 B
TypeScript
40 lines
977 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
DEFAULT: "#0f6e56",
|
|
50: "#f0faf6",
|
|
100: "#d7f2e8",
|
|
200: "#b2e5d4",
|
|
300: "#7dcfb8",
|
|
400: "#46b396",
|
|
500: "#289679",
|
|
600: "#1b7a62",
|
|
700: "#0f6e56",
|
|
800: "#134f40",
|
|
900: "#0f4135",
|
|
950: "#082a22",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
vazir: ["var(--font-vazirmatn)", "system-ui", "sans-serif"],
|
|
inter: ["var(--font-inter)", "system-ui", "sans-serif"],
|
|
},
|
|
animation: {
|
|
"fade-up": "fadeUp 0.5s ease-out forwards",
|
|
},
|
|
keyframes: {
|
|
fadeUp: {
|
|
"0%": { opacity: "0", transform: "translateY(16px)" },
|
|
"100%": { opacity: "1", transform: "translateY(0)" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|