Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor: Restructure and Rename Directories and Components #55

Merged
merged 2 commits into from
Apr 2, 2023

Conversation

ash1eygrace
Copy link
Owner

Related issue this solves Refactor: Restructure and Rename Directories and Components #31

The Problem:

The current project structure has evolved over time, and is difficult to navigate and maintain, especially since some files are not being used anymore since recent improvements. The main issue is the lack of proper separation of concerns and inconsistent organization, which can lead to confusion and difficulty in understanding the project as a whole

The new structure is much better, and easier to navigate and organize new features:

ai-content
├── node_modules
├── public
│   ├── _redirects
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
├── src
│   ├── assets
│   │   └── images
│   │       └── logo.png
│   ├── components
│   │   ├── api
│   │   │   └── OpenAIAPI.js
│   │   ├── common
│   │   │   ├── CopyToClipboard.js
│   │   │   ├── LoadingSpinner.js
│   │   │   └── Navigation.js
│   │   ├── generators
│   │   │   ├── Generator.js
│   │   │   └── GeneratorCard.js
│   │   └── pages
│   │       └── Home.js
│   ├── data
│   │   └── generatorList.js
│   ├── App.css
│   ├── App.js
│   ├── index.css
│   └── index.js
├── .gitignore
├── package.json
└── README.md

@ash1eygrace ash1eygrace self-assigned this Apr 2, 2023
@ash1eygrace ash1eygrace merged commit 7ecadaf into main Apr 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant