Initial commit: MoreminiMore new Astro website with PDPA compliance

This commit is contained in:
Kunthawat Greethong
2026-04-17 17:41:27 +07:00
commit 0219413190
11129 changed files with 1634279 additions and 0 deletions

20
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: '#fed400',
secondary: '#000000',
neutral: '#ffffff',
'light-gray': '#e8e8e8',
'dark-gray': '#0f0f0f',
},
fontFamily: {
sans: ['Noto Sans Thai', 'sans-serif'],
heading: ['Kanit', 'sans-serif'],
},
},
},
plugins: [],
};