2026-05-24 17:37:21 +03:30
|
|
|
import type { Metadata } from "next";
|
2026-06-02 09:35:14 +03:30
|
|
|
import { getTranslations } from "next-intl/server";
|
2026-05-24 17:37:21 +03:30
|
|
|
|
|
|
|
|
import { ImageMakerCta } from "@/components/image-maker/ImageMakerCta";
|
|
|
|
|
import { ImageMakerFeatures } from "@/components/image-maker/ImageMakerFeatures";
|
|
|
|
|
import { ImageMakerGallery } from "@/components/image-maker/ImageMakerGallery";
|
|
|
|
|
import { ImageMakerHero } from "@/components/image-maker/ImageMakerHero";
|
|
|
|
|
import { ImageMakerUseCases } from "@/components/image-maker/ImageMakerUseCases";
|
|
|
|
|
import { createPageMetadata } from "@/lib/metadata";
|
|
|
|
|
|
2026-06-02 09:35:14 +03:30
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
|
|
|
const t = await getTranslations("auto.appImageMakerPage");
|
|
|
|
|
return createPageMetadata({
|
|
|
|
|
title: t("metaTitle"),
|
|
|
|
|
description: t("metaDescription"),
|
|
|
|
|
path: "/image-maker",
|
|
|
|
|
});
|
|
|
|
|
}
|
2026-05-24 17:37:21 +03:30
|
|
|
|
|
|
|
|
export default function ImageMakerPage() {
|
|
|
|
|
return (
|
|
|
|
|
<main>
|
|
|
|
|
<ImageMakerHero />
|
|
|
|
|
<ImageMakerFeatures />
|
|
|
|
|
<ImageMakerUseCases />
|
|
|
|
|
<ImageMakerGallery />
|
|
|
|
|
<ImageMakerCta />
|
|
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|