summaryrefslogtreecommitdiff
path: root/garden/src/styles/theme.css
AgeCommit message (Collapse)AuthorFilesLines
2026-03-05feat: enhance layout and navigation with user role-based sections and ↵Bobby1-1/+13
improved styling
2026-02-27feat(layout): enhance layout with navigation, search bar, and footer linksBobby1-17/+16
style(theme): update color variables for improved aesthetics fix(NavSection): replace variant prop with accent for better styling chore(tsconfig): enforce consistent casing in file names add(background): include background image for enhanced visual appeal
2026-02-27feat(garden): initialize Solid.js project with basic structure and routingBobby1-0/+36
- Added package.json with dependencies for Solid.js and Vite. - Created main application component (App) with layout and suspense handling. - Implemented Layout component with navigation and sidebar sections. - Added NavSection and Sidebar components for structured navigation. - Configured API URL based on environment. - Created 404 error page for handling non-existent routes. - Set up global styles and theme variables for consistent design. - Established routing with lazy loading for the 404 page. - Added TypeScript configuration for Solid.js. - Configured Vite for development and production builds. - Created Makefile for building and running the Go application in the shrine directory. - Added .gitignore for ignoring build artifacts and environment files.