28 lines
934 B
TypeScript
28 lines
934 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
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";
|
||
|
|
|
||
|
|
export const metadata: Metadata = createPageMetadata({
|
||
|
|
title: "AI Image Maker",
|
||
|
|
description:
|
||
|
|
"Design professional visuals instantly with AI generation, templates, brand kits, and batch export.",
|
||
|
|
path: "/image-maker",
|
||
|
|
});
|
||
|
|
|
||
|
|
export default function ImageMakerPage() {
|
||
|
|
return (
|
||
|
|
<main>
|
||
|
|
<ImageMakerHero />
|
||
|
|
<ImageMakerFeatures />
|
||
|
|
<ImageMakerUseCases />
|
||
|
|
<ImageMakerGallery />
|
||
|
|
<ImageMakerCta />
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|