Merge remote-tracking branch 'o/develop' into develop

This commit is contained in:
andrey
2023-02-01 16:20:04 +02:00
166 changed files with 11678 additions and 5473 deletions

View File

@@ -1,5 +1,5 @@
import PageTitle from '@app/components/Common/PageTitle';
import { ArrowCircleRightIcon } from '@heroicons/react/outline';
import { ArrowRightCircleIcon } from '@heroicons/react/24/outline';
import Link from 'next/link';
import { defineMessages, useIntl } from 'react-intl';
@@ -24,7 +24,7 @@ const Custom404 = () => {
<Link href="/">
<a className="mt-2 flex">
{intl.formatMessage(messages.returnHome)}
<ArrowCircleRightIcon className="ml-2 h-6 w-6" />
<ArrowRightCircleIcon className="ml-2 h-6 w-6" />
</a>
</Link>
</div>

View File

@@ -1,6 +1,6 @@
import PageTitle from '@app/components/Common/PageTitle';
import type { Undefinable } from '@app/utils/typeHelpers';
import { ArrowCircleRightIcon } from '@heroicons/react/outline';
import { ArrowRightCircleIcon } from '@heroicons/react/24/outline';
import type { NextPage } from 'next';
import Link from 'next/link';
import { defineMessages, useIntl } from 'react-intl';
@@ -47,7 +47,7 @@ const Error: NextPage<ErrorProps> = ({ statusCode }) => {
<Link href="/">
<a className="mt-2 flex">
{intl.formatMessage(messages.returnHome)}
<ArrowCircleRightIcon className="ml-2 h-6 w-6" />
<ArrowRightCircleIcon className="ml-2 h-6 w-6" />
</a>
</Link>
</div>

View File

@@ -0,0 +1,8 @@
import DiscoverMovieKeyword from '@app/components/Discover/DiscoverMovieKeyword';
import type { NextPage } from 'next';
const DiscoverMoviesKeywordPage: NextPage = () => {
return <DiscoverMovieKeyword />;
};
export default DiscoverMoviesKeywordPage;

View File

@@ -0,0 +1,8 @@
import DiscoverTvKeyword from '@app/components/Discover/DiscoverTvKeyword';
import type { NextPage } from 'next';
const DiscoverTvKeywordPage: NextPage = () => {
return <DiscoverTvKeyword />;
};
export default DiscoverTvKeywordPage;