Skip to the content.

Create your portfolio

File structure example in react project

.
└── /src
    └── /components
        ├── /aboutMe                  │
        │   ├── aboutMe.tsx           │
        │   └── aboutMe.module.scss   │
        ├── /navbar                   │
        │   ├── navbar.tsx            │-- Keep your code in small simple parts
        │   └── navbar.module.scss    │
        ├── /footer                   │
        │   ├── footer.tsx            │
        │   └── footer.module.scss    │
        └── /sites
            ├── main.tsx            // Tell who you are 
            ├── projects.tsx        // samples of your skills
            └── cv.tsx              // information about your work and education background

Remember to use git!

Guides that may be helpful

<– BACK TO PART 6 (ROUTER)