import type { Metadata } from 'next';

export async function generateMetadata(): Promise<Metadata> {
  return {
    title: 'Suno | Pricing',
    description:
      'Choose the perfect Suno plan for your music creation needs. Find a plan that fits your creative goals and budget.',
    openGraph: {
      title: 'Suno | Pricing',
      description:
        'Choose the perfect Suno plan for your music creation needs. Find a plan that fits your creative goals and budget.',
      images: [
        {
          url: 'https://cdn-o.suno.com/meta-preview.jpg',
          width: 2468,
          height: 800,
          type: 'image/jpeg',
          alt: 'Suno Pricing',
        },
      ],
    },
    alternates: {
      canonical: 'https://suno.com/pricing',
    },
  };
}
