56 lines
1.9 KiB
TypeScript
56 lines
1.9 KiB
TypeScript
import type { Metadata } from "next";
|
|
import AboutHero from "@/components/AboutHero";
|
|
import Mission from "@/components/Mission";
|
|
import Values from "@/components/Values";
|
|
import Team from "@/components/Team";
|
|
import CTA from "@/components/CTA";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "O nas — Eksperci AI dla Firm | SZMYT AI Labs",
|
|
description:
|
|
"Zespół specjalistów AI z wieloletnim doświadczeniem ✓ Realizujemy projekty dla firm z różnych branż ✓ Transparentność, innowacyjność, efektywność. Poznaj nas!",
|
|
keywords: [
|
|
"zespół AI",
|
|
"eksperci sztucznej inteligencji",
|
|
"specjaliści AI",
|
|
"doświadczenie AI",
|
|
"firma AI Polska",
|
|
"konsultanci AI",
|
|
],
|
|
openGraph: {
|
|
title: "O nas — Eksperci AI dla Firm | SZMYT AI Labs",
|
|
description:
|
|
"Zespół specjalistów AI z wieloletnim doświadczeniem ✓ Realizujemy projekty dla firm z różnych branż ✓ Transparentność, innowacyjność, efektywność.",
|
|
url: "https://aiagentdlafirm.pl/about/",
|
|
},
|
|
alternates: { canonical: "https://aiagentdlafirm.pl/about/" },
|
|
};
|
|
|
|
const pageSchema = {
|
|
"@context": "https://schema.org",
|
|
"@type": "WebPage",
|
|
name: "O nas — Eksperci AI dla Firm",
|
|
url: "https://aiagentdlafirm.pl/about/",
|
|
description: "Zespół specjalistów AI z wieloletnim doświadczeniem. Realizujemy projekty dla firm z różnych branż. Transparentność, innowacyjność, efektywność.",
|
|
breadcrumb: {
|
|
"@type": "BreadcrumbList",
|
|
itemListElement: [
|
|
{ "@type": "ListItem", position: 1, name: "Strona główna", item: "https://aiagentdlafirm.pl/" },
|
|
{ "@type": "ListItem", position: 2, name: "O nas", item: "https://aiagentdlafirm.pl/about/" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(pageSchema) }} />
|
|
<AboutHero />
|
|
<Mission />
|
|
<Values />
|
|
<Team />
|
|
<CTA />
|
|
</>
|
|
);
|
|
}
|