summaryrefslogtreecommitdiff
path: root/garden/src/styles/layout.css
AgeCommit message (Collapse)AuthorFilesLines
2026-03-10feat(districts): add district management functionalityBobby1-3/+2
- Introduced new types and interfaces for districts, sites, and citizen summaries. - Implemented district image and icon utilities. - Created controllers for listing districts, submitting sites, and managing site requests. - Added enums for district slugs and site statuses. - Developed services for district site management, including submission, review, and editing. - Implemented thumbnail generation for district sites. - Established repository methods for district site CRUD operations. - Created router paths for district-related endpoints. - Added messages for error handling in district operations. - Enhanced models to support district site features. - Implemented pagination and search functionalities for district site listings.
2026-03-10feat: implement useClickOutside hook for improved click handling and ↵Bobby1-2/+5
refactor components
2026-03-06feat: integrate MinIO storage functionality and update user model for CDN ↵Bobby1-5/+18
support
2026-03-06feat: implement user statistics and heartbeat functionality with UI updatesBobby1-41/+174
2026-03-05feat: enhance layout and navigation with user role-based sections and ↵Bobby1-22/+27
improved styling
2026-03-05feat: implement user authentication flow with login, registration, and email ↵Bobby1-0/+111
verification
2026-02-27feat(layout): enhance layout with navigation, search bar, and footer linksBobby1-67/+189
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/+157
- 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.