gitextract_u4kywwvh/ ├── .eslintignore ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── appreciation.yml │ └── axe.yaml ├── .gitignore ├── .gitpod.yml ├── .husky/ │ └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CODING_STANDARDS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── components/ │ ├── CodeBlock/ │ │ ├── CodeBlock.module.css │ │ └── CodeBlock.tsx │ ├── ContentTemplates/ │ │ ├── AlertsTemplate.tsx │ │ ├── AnimationsTemplate.tsx │ │ ├── AudioTemplate.tsx │ │ ├── BreadcrumbsTemplate.module.css │ │ ├── BreadcrumbsTemplate.tsx │ │ ├── ButtonsTemplate.module.css │ │ ├── ButtonsTemplate.tsx │ │ ├── CaptchasTemplate.tsx │ │ ├── ChartsTemplate.tsx │ │ ├── FormsTemplate.tsx │ │ ├── HeadingsTemplate.tsx │ │ ├── IconsTemplate.tsx │ │ ├── ImagesTemplate.tsx │ │ ├── LinksTemplate.module.css │ │ ├── LinksTemplate.tsx │ │ ├── ListsTemplate.tsx │ │ ├── MenusTemplate.tsx │ │ ├── ModalsTemplate.tsx │ │ ├── NavigationTemplate.tsx │ │ ├── PaginationTemplate.tsx │ │ ├── TablesTemplate.tsx │ │ └── VideoTemplate.tsx │ ├── CopyCodeBlock/ │ │ ├── CopyCodeBlock.module.css │ │ └── CopyCodeBlock.tsx │ ├── Footer/ │ │ ├── Footer.module.css │ │ └── Footer.tsx │ ├── Header/ │ │ ├── Header.module.css │ │ └── Header.tsx │ ├── Layout/ │ │ ├── Layout.module.css │ │ └── Layout.tsx │ ├── MaintainerCard/ │ │ ├── MaintainerCard.module.css │ │ └── MaintainerCard.tsx │ ├── Nav/ │ │ ├── NavItem.tsx │ │ ├── NavPrimary.module.css │ │ ├── NavPrimary.tsx │ │ └── NavPrimaryMobile.tsx │ ├── NavPage/ │ │ ├── NavPage.module.css │ │ └── NavPage.tsx │ ├── PageUpdated/ │ │ ├── PageUpdated.module.css │ │ └── PageUpdated.tsx │ ├── SkipLink/ │ │ ├── SkipLink.module.css │ │ └── SkipLink.tsx │ ├── TemplateSection/ │ │ ├── TemplateSection.module.css │ │ └── TemplateSection.tsx │ ├── ThemeSwitcher/ │ │ ├── ThemeSwitcher.module.css │ │ ├── ThemeSwitcher.tsx │ │ └── themes.ts │ ├── TipOfTheDay/ │ │ ├── TipOfTheDay.module.css │ │ └── TipOfTheDay.tsx │ └── WorkInProgress/ │ ├── WorkInProgress.module.css │ └── WorkInProgress.tsx ├── customHooks/ │ └── useOnClickOutside.ts ├── data/ │ ├── maintainers.ts │ ├── pageNavigationLists.ts │ ├── pages.ts │ └── tipsOfTheDay.ts ├── docs-style-guide.md ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package.json ├── pages/ │ ├── 404.tsx │ ├── [content].tsx │ ├── _app.tsx │ ├── about.tsx │ ├── api/ │ │ └── hello.ts │ ├── docs/ │ │ └── Style Guide.md │ └── index.tsx ├── public/ │ ├── locales/ │ │ ├── en/ │ │ │ ├── common.json │ │ │ └── homepage.json │ │ └── sv/ │ │ ├── common.json │ │ └── homepage.json │ └── site.webmanifest ├── styles/ │ ├── about.module.css │ └── globals.css ├── tsconfig.json └── utils.ts