https://github.com/kaplanh/fullvitaminstackteam
https://github.com/kaplanh/fullvitaminstackteam
bootstrap5 css-transform css3 destructuring props react
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaplanh/fullvitaminstackteam
- Owner: kaplanh
- Created: 2025-01-04T13:13:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-04T16:01:00.000Z (over 1 year ago)
- Last Synced: 2025-10-25T09:35:47.896Z (7 months ago)
- Topics: bootstrap5, css-transform, css3, destructuring, props, react
- Language: JavaScript
- Homepage: https://full-vitamin-stack-team.vercel.app
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fullVitaminStack
[:point_right: Click here to see on browser](https://full-vitamin-stack-team.vercel.app/)
## 
| **What's used in this app ?** | **How use third party libraries** | **Author** |
| --------------------------------------------------------------------------------------- | --------------------------------- | -------------------------------------------------------------------------------- |
| [props-drilling](https://react.dev/learn#sharing-data-between-components) | | [Take a look at my portfolio](https://kaplanh.github.io/Portfolio_with_CssFlex/) |
| [Bootstrap](https://getbootstrap.com/) | npm i bootstrap | [Visit me on Linkedin](https://www.linkedin.com/in/kaplan-h/) |
| [Semantic-Commits](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716) | | |
| Deploy with [Vercel](https://vercel.com/kaplanhs-projects) | | |
---
## How To Run This Project π
### π» Install React π
```bash
yarn create react-app . or npx create-react-app .
```
### π» Install Sass π
```bash
yarn add sass or npm i sass
```
## π΄ Delete these files and delete the importsπ
- App.test.js
- reportWebVitals.js
- setupTests.js
- favicon.ico
- logo192.png
- logo512.png
- manifest.json
- robots.txt
### π» Start the project π
```bash
yarn start or npm start
```
OR
- Clone the Repo
```sh
git clone
```
- Install NPM packages
```sh
npm install or yarn
```
- Run the project
```sh
npm start or yarn start
```
- Open the project on your browser
```sh
http://localhost:3000/
```
- ### Enjoy! π
---
## Project Skeleton
```
Task Traker (folder)
|
|----public (folder)
β βββ index.html
|----src (folder)
| |--- components (folder)
β β βββ Header.jsx
β β βββ Card.jsx
β β
β β--- App.js
| |--- data.js
β |--- index.js
β β--- styles.css
β
β
|-- .gitignore
|ββ package-lock.json
βββ package.json
|ββ README.md
|ββ yarn.lock
```
---
### At the end of the project, the following topics are to be covered;
- props & destructuring & map((item.index)=> ...) & bootstrap & css import
```jsx
import Card from "./components/Card";
import Header from "./components/Header";
import { contacts } from "./data";
import "bootstrap/dist/css/bootstrap.css";
import "./styles.css";
// console.log(contacts);
const App = () => {
return (
{contacts.map((item) => {
const { id, name, imgURL, phone, email } = item;
return (
<>
>
);
})}
);
};
export default App;
```
- Semantic Commit Messages
See how a minor change to your commit message style can make you a better programmer.
Format: ():
is optional
- Example
```
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.
```
- More Examples:
- `feat`: (new feature for the user, not a new feature for build script)
- `fix`: (bug fix for the user, not a fix to a build script)
- `docs`: (changes to the documentation)
- `style`: (formatting, missing semi colons, etc; no production code change)
- `refactor`: (refactoring production code, eg. renaming a variable)
- `test`: (adding missing tests, refactoring tests; no production code change)
- `chore`: (updating grunt tasks etc; no production code change)
---
## Feedback and Collaboration
I value your feedback and suggestions. If you have any comments, questions, or ideas for improvement regarding this project or any of my other projects, please don't hesitate to reach out.
I'm always open to collaboration and welcome the opportunity to work on exciting projects together.
Thank you for visiting my project. I hope you have a wonderful experience exploring it, and I look forward to connecting with you soon!
β Happy Coding β