Initial commit: Omni-Cloud Solutions site

This commit is contained in:
2026-05-29 23:35:46 +00:00
parent b56564fa44
commit 8a49160e7d
10 changed files with 313 additions and 103 deletions
+24
View File
@@ -0,0 +1,24 @@
import type { Config } from "tailwindcss";
const config: Config = {
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: {
mundo: {
blue: "#0056b3",
green: "#00a651",
orange: "#f39200",
dark: "#1a1a2e",
light: "#f8f9fa",
},
},
},
},
plugins: [],
};
export default config;