gitextract_uvzrgxt3/ ├── .gitignore ├── README.md ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src/ ├── App.js ├── App.test.js ├── Pages/ │ └── Home.js ├── Sections/ │ ├── About/ │ │ └── index.js │ ├── Contact/ │ │ └── index.js │ ├── Hero/ │ │ └── index.js │ ├── Services/ │ │ └── index.js │ └── Testimonials/ │ └── index.js ├── components/ │ ├── Card/ │ │ └── index.js │ ├── Footer/ │ │ └── index.js │ ├── Header/ │ │ └── index.js │ ├── ScrollToTop/ │ │ └── index.js │ ├── SvgBlock/ │ │ └── index.js │ └── TextBlock/ │ └── index.js ├── globalStyles.js ├── index.js ├── reportWebVitals.js └── setupTests.js