About this web app: 👉🏿 Creatorverse is a platform where users can manage and showcase content creators. The app allows users to add, view, edit, and delete content creators, each having their own detailed page with social media links.
-
A logical component structure in React is used to create the frontend of the app
-
At least five content creators are displayed on the homepage of the app
-
Each content creator item includes their name, a link to their channel/page, and a short description of their content
-
API calls use the async/await design pattern via Axios or fetch()
-
Clicking on a content creator item takes the user to their details page, which includes their name, url, and description
-
Each content creator has their own unique URL
-
The user can edit a content creator to change their name, url, or description
-
The user can delete a content creator
-
The user can add a new content creator by entering a name, url, or description and then it is displayed on the homepage
-
Picocss is used to style HTML elements
-
The content creator items are displayed in a creative format, like cards instead of a list
-
An image of each content creator is shown on their content creator card
-
SweetAlert2 is used for enhanced alert messages
-
Hover effects and animations for buttons and creator cards
-
Customized global styles including font integration from Google Fonts
Here's a walkthrough of implemented required features:
GIF created with ... 👉🏿 LICEcap
Copyright [👉🏿 2024] [👉🏿 Chen Chen Chuang]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
});
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react';
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
});