banatie-service/apps/landing/src/app/page.tsx

90 lines
2.2 KiB
TypeScript

import {
BackgroundBlobs,
HeroGlow,
HeroSection,
ApiExampleSection,
ProblemSolutionSection,
PromptUrlsSection,
HowItWorksSection,
KeyFeaturesSection,
IntegrationsSection,
ShapeTheFutureSection,
GeminiSection,
FinalCtaSection,
} from './_components';
import type { Metadata, Viewport } from 'next';
export const viewport: Viewport = {
themeColor: '#0a0a0f',
};
export const metadata: Metadata = {
title: 'AI Image Generation Inside Your Workflow | Banatie',
description:
'Generate production-ready images via API, SDK, CLI, or live URLs. Built-in CDN delivery, style references, and prompt enhancement. Built for developers.',
keywords: [
'API-first image generation',
'AI image API',
'image generation for developers',
'prompt to image API',
'CDN image delivery',
],
authors: [{ name: 'Banatie' }],
robots: 'index, follow',
alternates: {
canonical: 'https://banatie.app',
languages: {
en: 'https://banatie.app',
'x-default': 'https://banatie.app',
},
},
openGraph: {
type: 'website',
url: 'https://banatie.app',
title: 'AI Image Generation Inside Your Workflow | Banatie',
description:
'Generate production-ready images via API, SDK, CLI, or live URLs. Built-in CDN delivery in seconds.',
siteName: 'Banatie',
locale: 'en_US',
images: [
{
url: 'https://banatie.app/og-image.png',
width: 1200,
height: 630,
alt: 'Banatie - AI Image Generation API for Developers',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'AI Image Generation Inside Your Workflow | Banatie',
description:
'Generate production-ready images via API, SDK, CLI, or live URLs. Built-in CDN delivery in seconds.',
images: ['https://banatie.app/og-image.png'],
},
};
export default function Home() {
return (
<div className="relative">
<BackgroundBlobs />
<HeroGlow />
<HeroSection />
<ApiExampleSection />
<ProblemSolutionSection />
<PromptUrlsSection />
<HowItWorksSection />
<KeyFeaturesSection />
<IntegrationsSection />
<ShapeTheFutureSection />
<GeminiSection />
<FinalCtaSection />
</div>
);
}