Initial commit: OOODMDK website with updated cities page design

This commit is contained in:
albivkt
2025-06-29 03:18:28 +03:00
commit 5a37ded261
70 changed files with 41347 additions and 0 deletions

19
tailwind.config.mjs Normal file
View File

@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
gilroy: ["Gilroy", "sans-serif"],
nevduplenysh: ["Nevduplenysh", "sans-serif"],
},
},
screens: {
sm: "480px",
md: "768px",
lg: "1028px",
xl: "1440px",
},
},
plugins: [],
};