├── .eslintrc.json ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .vscode └── settings.json ├── COMMIT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── components ├── actions │ ├── button │ │ └── index.tsx │ └── navigation-link │ │ └── index.tsx ├── alert.tsx ├── container.tsx ├── data-grid │ ├── filter │ │ └── index.tsx │ ├── index.tsx │ └── table │ │ ├── index.tsx │ │ └── items │ │ ├── adress.tsx │ │ ├── help-status.tsx │ │ └── last-update.tsx ├── data-inputs │ ├── BaseInput │ │ └── index.tsx │ ├── Checkbox │ │ └── index.tsx │ ├── DataInputWrapper │ │ └── index.tsx │ ├── NumberInput │ │ └── index.tsx │ ├── Radio │ │ └── index.tsx │ ├── RadioGroup │ │ └── index.tsx │ ├── Select │ │ └── index.tsx │ ├── TextInput │ │ └── index.tsx │ └── Textarea │ │ └── index.tsx ├── error-boundary │ └── index.tsx ├── footer.tsx ├── form-elements │ ├── form-control.tsx │ └── form-manager.tsx ├── header │ ├── index.tsx │ └── share-dropdown.tsx ├── home-page │ ├── get-help.tsx │ ├── give-help.tsx │ ├── help-lists.tsx │ ├── help-maps │ │ ├── help-maps-button.tsx │ │ └── index.tsx │ └── index.tsx ├── icon.tsx ├── kvkk-sticky-bar.tsx ├── layouts │ ├── layout-inner │ │ └── index.tsx │ ├── layout-main │ │ └── index.tsx │ └── layout-noop │ │ └── index.tsx ├── logo.tsx ├── primary-button.tsx ├── request-help-message.tsx └── theme-button.tsx ├── hooks ├── useFormManager.tsx ├── useIsomorphicLayoutEffect.ts ├── useLocalStorage.ts ├── useOnClickOutSide.ts └── useToggle.ts ├── i18n.js ├── lib ├── cities.ts ├── constants │ ├── COMPONENT_VARIABELS.ts │ └── icons.tsx ├── enums │ └── index.ts ├── helpers │ ├── dynamic-key-value-pairs.ts │ └── is-empty.ts ├── mock │ └── help-list-items.ts ├── types │ ├── component-props │ │ ├── alert.props.ts │ │ ├── button.props.ts │ │ ├── container.props.ts │ │ ├── data-grid │ │ │ ├── filter.props.ts │ │ │ └── table.types.ts │ │ ├── form-elements │ │ │ ├── data-input-wrapper.props.ts │ │ │ └── data-inputs.props.ts │ │ ├── help-maps-button.props.ts │ │ ├── icon.props.ts │ │ └── navigation-link.props.ts │ ├── global.d.ts │ ├── list-pages │ │ ├── help-list-under-debris-rows.ts │ │ └── index.ts │ ├── next.d.ts │ └── validations │ │ ├── base.ts │ │ ├── help-construction-machine.ts │ │ ├── help-passenger-carriage.ts │ │ ├── help-request-food.ts │ │ ├── help-request-warming.ts │ │ ├── help-request-wreck.ts │ │ └── index.ts ├── utils.ts └── validations │ ├── index.ts │ ├── localeValidations.ts │ └── schemas │ ├── data-grid │ └── filter.schema.ts │ ├── help-construction-machine.ts │ ├── help-passenger-carriage.ts │ ├── help-request-food.ts │ ├── help-request-warming.ts │ ├── help-request-wreck.ts │ └── index.ts ├── lint-staged.config.js ├── locales ├── en │ └── common.js └── tr │ └── common.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── hello.ts ├── hukuki-kvkk │ └── index.tsx ├── iletisim │ └── index.tsx ├── index.tsx ├── yardim-et-bagis │ └── index.tsx ├── yardim-et-ismak │ └── index.tsx ├── yardim-et-yolcu-tasi │ └── index.tsx ├── yardim-istek-enkaz │ └── index.tsx ├── yardim-istek-gida │ └── index.tsx ├── yardim-istek-isinma │ └── index.tsx ├── yardim-linkler │ └── index.tsx ├── yardim-list-enkaz │ └── index.tsx ├── yardim-list-gida │ └── index.tsx ├── yardim-list-isinma │ └── index.tsx ├── yardim-list-ismak │ └── index.tsx ├── yardim-list-konaklama │ └── index.tsx └── yardim-list-yolcu-tasi │ └── index.tsx ├── postcss.config.js ├── prettier.config.js ├── public ├── icon.svg ├── map-afet-harita.jpg ├── map-deprem-enkaz.jpg ├── map-deprem-io.jpg └── meta.jpg ├── styles └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COMMIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/COMMIT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /components/actions/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/actions/button/index.tsx -------------------------------------------------------------------------------- /components/actions/navigation-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/actions/navigation-link/index.tsx -------------------------------------------------------------------------------- /components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/alert.tsx -------------------------------------------------------------------------------- /components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/container.tsx -------------------------------------------------------------------------------- /components/data-grid/filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/filter/index.tsx -------------------------------------------------------------------------------- /components/data-grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/index.tsx -------------------------------------------------------------------------------- /components/data-grid/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/table/index.tsx -------------------------------------------------------------------------------- /components/data-grid/table/items/adress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/table/items/adress.tsx -------------------------------------------------------------------------------- /components/data-grid/table/items/help-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/table/items/help-status.tsx -------------------------------------------------------------------------------- /components/data-grid/table/items/last-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-grid/table/items/last-update.tsx -------------------------------------------------------------------------------- /components/data-inputs/BaseInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/BaseInput/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/Checkbox/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/DataInputWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/DataInputWrapper/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/NumberInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/NumberInput/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/Radio/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/RadioGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/RadioGroup/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/Select/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/TextInput/index.tsx -------------------------------------------------------------------------------- /components/data-inputs/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/data-inputs/Textarea/index.tsx -------------------------------------------------------------------------------- /components/error-boundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/error-boundary/index.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/form-elements/form-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/form-elements/form-control.tsx -------------------------------------------------------------------------------- /components/form-elements/form-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/form-elements/form-manager.tsx -------------------------------------------------------------------------------- /components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/header/index.tsx -------------------------------------------------------------------------------- /components/header/share-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/header/share-dropdown.tsx -------------------------------------------------------------------------------- /components/home-page/get-help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/get-help.tsx -------------------------------------------------------------------------------- /components/home-page/give-help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/give-help.tsx -------------------------------------------------------------------------------- /components/home-page/help-lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/help-lists.tsx -------------------------------------------------------------------------------- /components/home-page/help-maps/help-maps-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/help-maps/help-maps-button.tsx -------------------------------------------------------------------------------- /components/home-page/help-maps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/help-maps/index.tsx -------------------------------------------------------------------------------- /components/home-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/home-page/index.tsx -------------------------------------------------------------------------------- /components/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/icon.tsx -------------------------------------------------------------------------------- /components/kvkk-sticky-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/kvkk-sticky-bar.tsx -------------------------------------------------------------------------------- /components/layouts/layout-inner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/layouts/layout-inner/index.tsx -------------------------------------------------------------------------------- /components/layouts/layout-main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/layouts/layout-main/index.tsx -------------------------------------------------------------------------------- /components/layouts/layout-noop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/layouts/layout-noop/index.tsx -------------------------------------------------------------------------------- /components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/logo.tsx -------------------------------------------------------------------------------- /components/primary-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/primary-button.tsx -------------------------------------------------------------------------------- /components/request-help-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/request-help-message.tsx -------------------------------------------------------------------------------- /components/theme-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/components/theme-button.tsx -------------------------------------------------------------------------------- /hooks/useFormManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/hooks/useFormManager.tsx -------------------------------------------------------------------------------- /hooks/useIsomorphicLayoutEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/hooks/useIsomorphicLayoutEffect.ts -------------------------------------------------------------------------------- /hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /hooks/useOnClickOutSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/hooks/useOnClickOutSide.ts -------------------------------------------------------------------------------- /hooks/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/hooks/useToggle.ts -------------------------------------------------------------------------------- /i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/i18n.js -------------------------------------------------------------------------------- /lib/cities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/cities.ts -------------------------------------------------------------------------------- /lib/constants/COMPONENT_VARIABELS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/constants/COMPONENT_VARIABELS.ts -------------------------------------------------------------------------------- /lib/constants/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/constants/icons.tsx -------------------------------------------------------------------------------- /lib/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/enums/index.ts -------------------------------------------------------------------------------- /lib/helpers/dynamic-key-value-pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/helpers/dynamic-key-value-pairs.ts -------------------------------------------------------------------------------- /lib/helpers/is-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/helpers/is-empty.ts -------------------------------------------------------------------------------- /lib/mock/help-list-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/mock/help-list-items.ts -------------------------------------------------------------------------------- /lib/types/component-props/alert.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/alert.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/button.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/button.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/container.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/container.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/data-grid/filter.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/data-grid/filter.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/data-grid/table.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/data-grid/table.types.ts -------------------------------------------------------------------------------- /lib/types/component-props/form-elements/data-input-wrapper.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/form-elements/data-input-wrapper.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/form-elements/data-inputs.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/form-elements/data-inputs.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/help-maps-button.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/help-maps-button.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/icon.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/icon.props.ts -------------------------------------------------------------------------------- /lib/types/component-props/navigation-link.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/component-props/navigation-link.props.ts -------------------------------------------------------------------------------- /lib/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/global.d.ts -------------------------------------------------------------------------------- /lib/types/list-pages/help-list-under-debris-rows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/list-pages/help-list-under-debris-rows.ts -------------------------------------------------------------------------------- /lib/types/list-pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './help-list-under-debris-rows'; 2 | -------------------------------------------------------------------------------- /lib/types/next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/next.d.ts -------------------------------------------------------------------------------- /lib/types/validations/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/base.ts -------------------------------------------------------------------------------- /lib/types/validations/help-construction-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/help-construction-machine.ts -------------------------------------------------------------------------------- /lib/types/validations/help-passenger-carriage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/help-passenger-carriage.ts -------------------------------------------------------------------------------- /lib/types/validations/help-request-food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/help-request-food.ts -------------------------------------------------------------------------------- /lib/types/validations/help-request-warming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/help-request-warming.ts -------------------------------------------------------------------------------- /lib/types/validations/help-request-wreck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/help-request-wreck.ts -------------------------------------------------------------------------------- /lib/types/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/types/validations/index.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/index.ts -------------------------------------------------------------------------------- /lib/validations/localeValidations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/localeValidations.ts -------------------------------------------------------------------------------- /lib/validations/schemas/data-grid/filter.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/data-grid/filter.schema.ts -------------------------------------------------------------------------------- /lib/validations/schemas/help-construction-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/help-construction-machine.ts -------------------------------------------------------------------------------- /lib/validations/schemas/help-passenger-carriage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/help-passenger-carriage.ts -------------------------------------------------------------------------------- /lib/validations/schemas/help-request-food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/help-request-food.ts -------------------------------------------------------------------------------- /lib/validations/schemas/help-request-warming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/help-request-warming.ts -------------------------------------------------------------------------------- /lib/validations/schemas/help-request-wreck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/help-request-wreck.ts -------------------------------------------------------------------------------- /lib/validations/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lib/validations/schemas/index.ts -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /locales/en/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/locales/en/common.js -------------------------------------------------------------------------------- /locales/tr/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/locales/tr/common.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/hukuki-kvkk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/hukuki-kvkk/index.tsx -------------------------------------------------------------------------------- /pages/iletisim/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/iletisim/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/yardim-et-bagis/index.tsx: -------------------------------------------------------------------------------- 1 | export default function HelpDonate() { 2 | return