fix: redesing and add features

This commit is contained in:
2026-02-07 12:06:35 -06:00
parent 4f103c25b5
commit d55aac6605
40 changed files with 1486 additions and 403 deletions

8
agent.md Normal file
View File

@@ -0,0 +1,8 @@
# Agent Guidelines for Vue
These rules must be followed when working on this project:
- **No Code Comments**: Never add comments to the `<script>` logic. Only add comments within the `<template>`.
- **Component Reuse**: Always create unique components and reuse them; never duplicate code.
- **Utils**: Always separate reusable functions into a `utils` folder.
- **Constants**: All constant values that can be removed from a component should be extracted. Maintain a single source of truth for constants. Do not use magic numbers in the code.