Reorganize component structure in apps/main and apps/blog#4
Conversation
- Reorganized `apps/main`: - Created `src/components/ui` and `src/components/react` directories. - Moved files from `src/React/ui/` to `src/components/ui/`. - Moved files from `src/React/` to `src/components/react/`. - Deleted `src/React` directory. - Updated imports in `src/components/Nav.astro`, `src/components/Home.astro`, and `src/components/react/ThemeSwitcher.tsx`. - Standardized `apps/blog`: - Renamed `src/components/React` to `src/components/react`. - Moved `src/components/Search.tsx` and `src/components/ThemeSwitcher.tsx` to `src/components/react/`. - Updated imports in `src/components/NavBar.astro`. - Fixed type errors: - Updated `apps/main/src/components/react/ThemeSwitcher.tsx` to use correct exports from `themes.ts`. - Updated `apps/blog/src/components/react/ThemeSwitcher.tsx` to use correct import path for `DropdownMenu`. - Removed unused code in `apps/main/src/components/Footer.astro`. Co-authored-by: zhsama <33454514+zhsama@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
❌ Deploy Preview for comforting-choux-f18496 failed. Why did it fail? →
|
✅ Deploy Preview for grand-zuccutto-8f35dc ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
- Moved `lettersAndSymbols` array to a constant `LETTERS_AND_SYMBOLS` outside the component scope in `apps/main/src/components/react/LetterGlitch.tsx`. - This cleans up the component body and improves readability. - Fixed `apps/main/src/components/Footer.astro` to remove unused env imports. Co-authored-by: zhsama <33454514+zhsama@users.noreply.github.com>

Reorganized the directory structure of both
apps/mainandapps/blogto be more consistent and follow standard conventions. Specifically, moved React components intosrc/components/reactand UI components intosrc/components/ui, removing the top-level capitalizedReactdirectory inapps/main. Also fixed some existing type errors and unused imports discovered during verification.PR created automatically by Jules for task 3609630583152871050 started by @zhsama