54 lines
1.9 KiB
TypeScript
54 lines
1.9 KiB
TypeScript
import type { Metadata } from "next";
|
|
import OfertaHero from "@/components/OfertaHero";
|
|
import OfertaServices from "@/components/OfertaServices";
|
|
import CTA from "@/components/CTA";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Oferta AI dla Firm — Wdrożenie Agentów AI | SZMYT AI Labs",
|
|
description:
|
|
"Kompleksowa oferta AI ✓ Analiza procesów ✓ Wdrożenie agentów AI ✓ Integracje z systemami ✓ Monitoring 24/7. Od analizy po pełną automatyzację. Bezpłatna konsultacja!",
|
|
keywords: [
|
|
"oferta AI dla firm",
|
|
"wdrożenie agentów AI",
|
|
"analiza procesów AI",
|
|
"integracja AI",
|
|
"monitoring AI",
|
|
"konsultacje AI",
|
|
"cennik AI",
|
|
"usługi AI dla biznesu",
|
|
],
|
|
openGraph: {
|
|
title: "Oferta AI dla Firm — Wdrożenie Agentów AI | SZMYT AI Labs",
|
|
description:
|
|
"Kompleksowa oferta AI ✓ Analiza procesów ✓ Wdrożenie agentów AI ✓ Integracje z systemami ✓ Monitoring 24/7.",
|
|
url: "https://aiagentdlafirm.pl/oferta/",
|
|
},
|
|
alternates: { canonical: "https://aiagentdlafirm.pl/oferta/" },
|
|
};
|
|
|
|
const pageSchema = {
|
|
"@context": "https://schema.org",
|
|
"@type": "WebPage",
|
|
name: "Oferta AI dla Firm — Wdrożenie Agentów AI",
|
|
url: "https://aiagentdlafirm.pl/oferta/",
|
|
description: "Kompleksowa oferta AI: analiza procesów, wdrożenie agentów AI, integracje z systemami, monitoring 24/7. Od analizy po pełną automatyzację.",
|
|
breadcrumb: {
|
|
"@type": "BreadcrumbList",
|
|
itemListElement: [
|
|
{ "@type": "ListItem", position: 1, name: "Strona główna", item: "https://aiagentdlafirm.pl/" },
|
|
{ "@type": "ListItem", position: 2, name: "Oferta", item: "https://aiagentdlafirm.pl/oferta/" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function Oferta() {
|
|
return (
|
|
<>
|
|
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(pageSchema) }} />
|
|
<OfertaHero />
|
|
<OfertaServices />
|
|
<CTA />
|
|
</>
|
|
);
|
|
}
|