Folder Structure
├── .github
| ├── contributing.md
├── __tests__
| ├── Home-es.test.tsx
| ├── Home-fr.test.tsx
| ├── Home.test.tsx
├── config
| ├── i18n
│ │ ├── config.ts
| ├── jest
│ │ ├── cssTransform.js
│ │ ├── test-utils.tsx
| ├── seo
│ │ ├── next-seo.config.ts
| ├── app.config.ts
├── public
│ ├── locales
| | ├── en
| | | ├── common.json
| | | ├── footer.json
| | | ├── header.json
| | | ├── index.json
| | ├── es
| | | ├── common.json
| | | ├── footer.json
| | | ├── header.json
| | | ├── index.json
| | ├── fr
| | | ├── common.json
| | | ├── footer.json
| | | ├── header.json
| | | ├── index.json
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ ├── site.webmanifest
│ ├── vercel.svg
├── src
| ├── components
│ │ ├── layout
| | | ├── Footer.tsx
| | | ├── Header.tsx
| | | ├── WebApp.tsx
│ │ ├── App.tsx
│ ├── i18n
│ │ ├── create-provider
| | | ├── browser.tsx
| | | ├── index.tsx
| ├── lib
│ │ ├── types.ts
│ │ ├── utils.ts
│ ├── pages
│ │ ├── [lng]
| | | ├── index.tsx
│ │ ├── api
| | | ├── hello.ts
│ │ ├── 404.tsx
│ │ ├── _app.tsx
│ │ ├── _document.tsx
│ │ ├── _error.tsx
│ │ ├── index.tsx
├── styles
| ├── Footer.module.scss
│ ├── Header.module.scss
| ├── Home.module.scss
│ ├── index.css
├── .babelrc
├── .editorconfig
├── .env.development
├── .env.production
├── .gitignore
├── CODE_OF_CONDUCT.md
├── README.md
├── changelog.md
├── jest.config.js
├── license.md
├── next-env.d.ts
├── next.config.js
├── package.json
├── postcss.config.js
├── tailwind.config.js
├── tsconfig.json
└── yarn.lock.github
__tests__
config
public
src
styles
Last updated
Was this helpful?