feat: add Panda CSS styling system with fonts and icons

Add @pandacss/dev, srjuggernaut-panda-preset, FontAwesome icons, and fonts to enable styling.
Update .gitignore to exclude styled-system directories.
This commit is contained in:
2026-03-04 14:30:44 -06:00
parent 13819410c5
commit 20cf804ac6
9 changed files with 629 additions and 10 deletions

6
postcss.config.ts Normal file
View File

@@ -0,0 +1,6 @@
import pandacssPlugin from '@pandacss/dev/postcss'
import type { Plugin, Processor, Transformer } from 'postcss'
export default {
plugins: [pandacssPlugin()]
} as { plugins: (Plugin | Transformer | Processor)[] }