gitextract_30qpdn3z/ ├── .gitignore ├── .nvmrc ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json └── src/ ├── components/ │ ├── Button/ │ │ ├── Button.js │ │ ├── Button.module.scss │ │ └── index.js │ ├── Container/ │ │ ├── Container.js │ │ ├── Container.module.scss │ │ └── index.js │ ├── Footer/ │ │ ├── Footer.js │ │ ├── Footer.module.scss │ │ └── index.js │ ├── Header/ │ │ ├── Header.js │ │ ├── Header.module.scss │ │ └── index.js │ ├── Layout/ │ │ ├── Layout.js │ │ ├── Layout.module.scss │ │ └── index.js │ ├── Map/ │ │ ├── DynamicMap.js │ │ ├── Map.js │ │ ├── Map.module.scss │ │ └── index.js │ └── Section/ │ ├── Section.js │ ├── Section.module.scss │ └── index.js ├── pages/ │ ├── _app.js │ ├── api/ │ │ └── hello.js │ └── index.js └── styles/ ├── Home.module.scss ├── globals.scss └── settings/ ├── __colors.scss └── _settings.scss