Skip to content

Commit

Permalink
Fix localised pages
Browse files Browse the repository at this point in the history
  • Loading branch information
JMPerez committed Jun 8, 2024
1 parent 548c068 commit 8fdd481
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pages/es/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/fr/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/id/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/it/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/nl/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/pl/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/pt/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/sv/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down
2 changes: 2 additions & 0 deletions pages/tr/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../../i18n';

import { useTranslation } from 'react-i18next';
import Index from '../../components/pages/index';
import Page from '../../layouts/main';
Expand Down

0 comments on commit 8fdd481

Please sign in to comment.