JuanPabloDiaz / landingZone

Landing page from a Figma project. App Build with React and Tailwind
https://lp.jpdiaz.dev/
MIT License
0 stars 0 forks source link

Definir la estructura del repositorio (tener un referente claro) #4

Closed megelon closed 10 months ago

JuanPabloDiaz commented 11 months ago

El proyecto va a ser desarrollado en React.js y Tailwind CSS

src/ ├── components/ │ ├── Hero.jsx │ ├── Services.jsx │ ├── Service-info.jsx │ ├── About.jsx │ ├── Testimonials.jsx │ ├── Projects.jsx │ ├── Team.jsx │ └── Footer.jsx ├── assets/ │ └── img/ │ └─── image.png │ └── icons/ │ └─── icons.png │── App.jsx |── index.js |── index.css |── tailwind.config.js |── readme.md |── package.json |── package-lock.json

megelon commented 11 months ago

mete la estrucutra en el readme del repo bro

JuanPabloDiaz commented 10 months ago

Readme updated with:

Project Structure for React App

The idea of this graph is to show how you can structure files by using folders

├── node_modules (.gitignore)
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
├── src
│   ├── assets
│   │   │   ├── images
│   │   │   └── logo.svg
│   ├── components
│   │   ├── Hero.jsx
│   │   ├── Services.jsx
│   │   ├── Services-info.jsx
│   │   ├── About.jsx
│   │   ├── Testimonials.jsx
│   │   ├── Projects.jsx
│   │   ├── Team.jsx
│   │   ├── Company.jsx
│   │   └── Footer.jsx
│   ├── index.css
│   ├── index.js
│   └── App.jsx
├── .gitignore
├── package-lock.json
├── package.json
├── tailwind.config.js
└── README.md