diff --git a/app/components/CollectionInfo/CollectionInfo.Basics.tsx b/app/components/CollectionInfo/CollectionInfo.Basics.tsx index a7cb2fd..b676b23 100644 --- a/app/components/CollectionInfo/CollectionInfo.Basics.tsx +++ b/app/components/CollectionInfo/CollectionInfo.Basics.tsx @@ -1,6 +1,7 @@ import { Card, Button, Avatar } from "flowbite-react"; import { unixToDate } from "#/api/utils"; import Link from "next/link"; +import Image from "next/image"; export const CollectionInfoBasics = (props: { image: string; @@ -36,7 +37,12 @@ export const CollectionInfoBasics = (props: {
- +

{props.title}

diff --git a/app/components/CollectionLink/CollectionLink.tsx b/app/components/CollectionLink/CollectionLink.tsx index 25b8610..a3ae98e 100644 --- a/app/components/CollectionLink/CollectionLink.tsx +++ b/app/components/CollectionLink/CollectionLink.tsx @@ -1,5 +1,6 @@ import Link from "next/link"; import { Chip } from "#/components/Chip/Chip"; +import Image from "next/image"; export const CollectionLink = (props: any) => { return ( @@ -8,9 +9,20 @@ export const CollectionLink = (props: any) => {
+ {props.title}
{

- {`${props.description.slice(0, 125)}${props.description.length > 125 ? "..." : ""}`} + {`${props.description.slice(0, 125)}${ + props.description.length > 125 ? "..." : "" + }`}

diff --git a/app/components/Comments/Comments.Comment.tsx b/app/components/Comments/Comments.Comment.tsx index 0788d2a..563cd32 100644 --- a/app/components/Comments/Comments.Comment.tsx +++ b/app/components/Comments/Comments.Comment.tsx @@ -6,6 +6,7 @@ import Link from "next/link"; import { CommentsAddModal } from "./Comments.Add"; import { CommentsEditModal } from "./Comments.Edit"; import { useUserStore } from "#/store/auth"; +import Image from "next/image"; export const CommentsComment = (props: { release_id: number; @@ -155,8 +156,10 @@ export const CommentsComment = (props: { href={`/profile/${props.profile.id}`} className="inline-flex items-center mr-3 text-sm font-semibold text-gray-900 dark:text-white hover:underline" > - diff --git a/app/components/Navbar/Navbar.tsx b/app/components/Navbar/Navbar.tsx index 53a3488..8ba8a51 100644 --- a/app/components/Navbar/Navbar.tsx +++ b/app/components/Navbar/Navbar.tsx @@ -11,6 +11,7 @@ import { ToggleSwitch, } from "flowbite-react"; import { useState } from "react"; +import Image from "next/image"; export const Navbar = () => { const pathname = usePathname(); @@ -110,10 +111,12 @@ export const Navbar = () => { {userStore.isAuth ? (
- { const declension = numberDeclension( @@ -14,12 +15,18 @@ export const RelatedSection = (props: any) => {
{props.images.map((item) => { return ( - +
+ +
); })}
@@ -29,11 +36,11 @@ export const RelatedSection = (props: any) => { {props.release_count} {declension} во франшизе

-
-

Перейти

- -
- +
+

Перейти

+ +
+
diff --git a/app/components/ReleaseCourusel/ReleaseCourusel.tsx b/app/components/ReleaseCourusel/ReleaseCourusel.tsx index faaa3cb..fabc504 100644 --- a/app/components/ReleaseCourusel/ReleaseCourusel.tsx +++ b/app/components/ReleaseCourusel/ReleaseCourusel.tsx @@ -62,7 +62,7 @@ export const ReleaseCourusel = (props: { key={release.id} style={{ width: "fit-content" }} > -
+
diff --git a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx index 06588b2..3fcac54 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx @@ -1,5 +1,6 @@ import { Card, Button } from "flowbite-react"; import { useState } from "react"; +import Image from "next/image"; export const ReleaseInfoBasics = (props: { image: string; @@ -12,11 +13,13 @@ export const ReleaseInfoBasics = (props: { return (
- + width={285} + height={385} + />

diff --git a/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx b/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx index 74d02e6..b64ef17 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx @@ -1,13 +1,19 @@ import { Card, Carousel } from "flowbite-react"; +import Image from "next/image"; -export const ReleaseInfoScreenshots = (props: { - images: string[]; -}) => { +export const ReleaseInfoScreenshots = (props: { images: string[] }) => { return ( {props.images.map((image: string, index: number) => ( - + ))} diff --git a/app/components/ReleaseLink/ReleaseLink.16_9.tsx b/app/components/ReleaseLink/ReleaseLink.16_9.tsx index 1c2c594..1029a0b 100644 --- a/app/components/ReleaseLink/ReleaseLink.16_9.tsx +++ b/app/components/ReleaseLink/ReleaseLink.16_9.tsx @@ -1,6 +1,7 @@ import Link from "next/link"; import { sinceUnixDate } from "#/api/utils"; import { Chip } from "#/components/Chip/Chip"; +import Image from "next/image"; const profile_lists = { // 0: "Не смотрю", @@ -29,10 +30,21 @@ export const ReleaseLink169 = (props: any) => {

-
+ {props.title} +
{
)}
-
+
{props.genres && (

@@ -105,7 +117,9 @@ export const ReleaseLink169 = (props: any) => {

- {`${props.description.slice(0, 125)}${props.description.length > 125 ? "..." : ""}`} + {`${props.description.slice(0, 125)}${ + props.description.length > 125 ? "..." : "" + }`}

diff --git a/imageLoader.ts b/imageLoader.ts new file mode 100644 index 0000000..1bac8ae --- /dev/null +++ b/imageLoader.ts @@ -0,0 +1,5 @@ +"use client"; + +export default function imageLoader({ src, width, quality }) { + return `https://wsrv.nl/?url=${src}&w=${width}&q=${quality || 75}`; +} diff --git a/next.config.js b/next.config.js index e503f44..8ddd554 100644 --- a/next.config.js +++ b/next.config.js @@ -2,4 +2,15 @@ const { withPlausibleProxy } = require("next-plausible"); module.exports = withPlausibleProxy({ customDomain: "https://analytics.wah.su", -})({}); +})({ + images: { + loader: 'custom', + loaderFile: './imageLoader.ts', + remotePatterns: [ + { + protocol: "https", + hostname: "anixstatic.com", + }, + ], + }, +});