Compare commits

..

No commits in common. "9679934bb83f9b52c1aeb823c2f3a18b523dcedb" and "9c4dd35782cc17411522c65e51f2938685f64f11" have entirely different histories.

5 changed files with 6 additions and 33 deletions

View File

@ -2,7 +2,6 @@ import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
trailingSlash: true,
images: {
unoptimized: true,
},

View File

@ -17,9 +17,6 @@ const caveat = Caveat({
display: 'swap',
});
export const metadata: Metadata = {
metadataBase: new URL('https://banatie.app'),
};
export default function RootLayout({
children,

View File

@ -34,16 +34,16 @@ export const metadata: Metadata = {
robots: 'index, follow',
alternates: {
canonical: '/',
canonical: 'https://banatie.app',
languages: {
en: '/',
'x-default': '/',
en: 'https://banatie.app',
'x-default': 'https://banatie.app',
},
},
openGraph: {
type: 'website',
url: '/',
url: 'https://banatie.app',
title: 'AI Image Generation Inside Your Workflow | Banatie',
description:
'Generate production-ready images via API, SDK, CLI, or Prompt URLs. Built-in CDN delivery, style references, and smart prompt enhancement. Built for developers.',
@ -51,7 +51,7 @@ export const metadata: Metadata = {
locale: 'en_US',
images: [
{
url: '/og-image.png',
url: 'https://banatie.app/og-image.png',
width: 1200,
height: 630,
alt: 'Banatie - AI Image Generation API for Developers',
@ -64,7 +64,7 @@ export const metadata: Metadata = {
title: 'AI Image Generation Inside Your Workflow | Banatie',
description:
'Generate production-ready images via API, SDK, CLI, or Prompt URLs. Built-in CDN delivery, style references, and smart prompt enhancement. Built for developers.',
images: ['/og-image.png'],
images: ['https://banatie.app/og-image.png'],
},
};

View File

@ -1,11 +0,0 @@
import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
},
sitemap: 'https://banatie.app/sitemap.xml',
};
}

View File

@ -1,12 +0,0 @@
import { MetadataRoute } from 'next';
export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: 'https://banatie.app/',
lastModified: new Date(),
changeFrequency: 'weekly',
priority: 1,
},
];
}