Initial project upload

This commit is contained in:
Mohamed Mathar Irfan
2026-07-28 17:57:02 +05:30
commit ed6610d5d8
23919 changed files with 3003316 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
brand: {
50: "#eef4ff", 100: "#dbe7ff", 500: "#2563eb",
600: "#1d4ed8", 700: "#1e40af", 900: "#0b1f4d",
},
sidebar: "#0b1f4d",
},
fontFamily: { sans: ["Inter", "system-ui", "sans-serif"] },
},
},
plugins: [],
};
export default config;