import type { Metadata } from "next";
import SolutionsPage from "../../solutions/solutions-page";

export const metadata: Metadata = {
  title: "NEXORA AI | AI Solutions for Customer Service, Sales & Automation",
  description: "Business AI solutions that bring customer service, sales, conversation management, automation, and digital agents into one platform.",
  alternates: { canonical: "/en/solutions", languages: { "ar-SA": "/solutions", en: "/en/solutions" } },
  openGraph: {
    title: "NEXORA AI | Practical AI Solutions for Business",
    description: "Customer service, sales, conversations, and automation in one platform.",
    type: "website",
    locale: "en_US",
  },
};

export default function EnglishSolutionsPage() {
  const structuredData = {
    "@context": "https://schema.org",
    "@type": "Service",
    name: "NEXORA AI Business Solutions",
    serviceType: "Digital agents, automation, and conversation management",
    provider: { "@type": "Organization", name: "NEXORA AI" },
    areaServed: "Worldwide",
    inLanguage: "en",
    description: metadata.description,
  };
  return <><script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }} /><SolutionsPage lang="en" /></>;
}
