aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/blog/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/blog/index.tsx')
-rw-r--r--src/pages/blog/index.tsx49
1 files changed, 26 insertions, 23 deletions
diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx
index 3be8a99..1f88588 100644
--- a/src/pages/blog/index.tsx
+++ b/src/pages/blog/index.tsx
@@ -1,41 +1,44 @@
-import Notice from '@components/atoms/layout/notice';
-import PostsList from '@components/organisms/layout/posts-list';
-import LinksListWidget from '@components/organisms/widgets/links-list-widget';
-import { getLayout } from '@components/templates/layout/layout';
-import PageLayout from '@components/templates/page/page-layout';
-import { getArticles, getTotalArticles } from '@services/graphql/articles';
+import { GetStaticProps } from 'next';
+import Head from 'next/head';
+import { useRouter } from 'next/router';
+import Script from 'next/script';
+import { useIntl } from 'react-intl';
+import Notice from '../../components/atoms/layout/notice';
+import PostsList from '../../components/organisms/layout/posts-list';
+import LinksListWidget from '../../components/organisms/widgets/links-list-widget';
+import { getLayout } from '../../components/templates/layout/layout';
+import PageLayout from '../../components/templates/page/page-layout';
+import { getArticles, getTotalArticles } from '../../services/graphql/articles';
import {
getThematicsPreview,
getTotalThematics,
-} from '@services/graphql/thematics';
-import { getTopicsPreview, getTotalTopics } from '@services/graphql/topics';
-import { type NextPageWithLayout } from '@ts/types/app';
-import { EdgesResponse } from '@ts/types/graphql/queries';
+} from '../../services/graphql/thematics';
+import {
+ getTopicsPreview,
+ getTotalTopics,
+} from '../../services/graphql/topics';
+import { type NextPageWithLayout } from '../../types/app';
+import { EdgesResponse } from '../../types/graphql/queries';
import {
type RawArticle,
type RawThematicPreview,
type RawTopicPreview,
-} from '@ts/types/raw-data';
-import { settings } from '@utils/config';
-import { loadTranslation, type Messages } from '@utils/helpers/i18n';
+} from '../../types/raw-data';
+import { settings } from '../../utils/config';
+import { loadTranslation, type Messages } from '../../utils/helpers/i18n';
import {
getLinksListItems,
getPageLinkFromRawData,
getPostsList,
-} from '@utils/helpers/pages';
+} from '../../utils/helpers/pages';
import {
getBlogSchema,
getSchemaJson,
getWebPageSchema,
-} from '@utils/helpers/schema-org';
-import useBreadcrumb from '@utils/hooks/use-breadcrumb';
-import usePagination from '@utils/hooks/use-pagination';
-import useSettings from '@utils/hooks/use-settings';
-import { GetStaticProps } from 'next';
-import Head from 'next/head';
-import { useRouter } from 'next/router';
-import Script from 'next/script';
-import { useIntl } from 'react-intl';
+} from '../../utils/helpers/schema-org';
+import useBreadcrumb from '../../utils/hooks/use-breadcrumb';
+import usePagination from '../../utils/hooks/use-pagination';
+import useSettings from '../../utils/hooks/use-settings';
type BlogPageProps = {
articles: EdgesResponse<RawArticle>;