56 lines
2.0 KiB
TypeScript
56 lines
2.0 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 — Specjaliści Sztucznej Inteligencji | SZMYT AI Labs",
|
|
description:
|
|
"Zespół ekspertów AI ✓ Doświadczenie w projektach dla różnych branż ✓ Transparentność i efektywność ✓ Kompleksowe wdrożenia AI. Poznaj naszą misję!",
|
|
keywords: [
|
|
"zespół AI",
|
|
"eksperci sztucznej inteligencji",
|
|
"specjaliści AI Polska",
|
|
"doświadczenie AI",
|
|
"firma AI",
|
|
"konsultanci sztucznej inteligencji",
|
|
],
|
|
openGraph: {
|
|
title: "O nas — Specjaliści Sztucznej Inteligencji | SZMYT AI Labs",
|
|
description:
|
|
"Zespół ekspertów AI ✓ Doświadczenie w projektach dla różnych branż ✓ Transparentność i efektywność ✓ Kompleksowe wdrożenia AI.",
|
|
url: "https://sztucznainteligencjadlafirm.pl/about/",
|
|
},
|
|
alternates: { canonical: "https://sztucznainteligencjadlafirm.pl/about/" },
|
|
};
|
|
|
|
const pageSchema = {
|
|
"@context": "https://schema.org",
|
|
"@type": "WebPage",
|
|
name: "O nas — Specjaliści Sztucznej Inteligencji",
|
|
url: "https://sztucznainteligencjadlafirm.pl/about/",
|
|
description: "Zespół ekspertów AI z doświadczeniem w projektach dla różnych branż. Transparentność, efektywność i kompleksowe wdrożenia AI.",
|
|
breadcrumb: {
|
|
"@type": "BreadcrumbList",
|
|
itemListElement: [
|
|
{ "@type": "ListItem", position: 1, name: "Strona główna", item: "https://sztucznainteligencjadlafirm.pl/" },
|
|
{ "@type": "ListItem", position: 2, name: "O nas", item: "https://sztucznainteligencjadlafirm.pl/about/" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(pageSchema) }} />
|
|
<AboutHero />
|
|
<Mission />
|
|
<Values />
|
|
<Team />
|
|
<CTA />
|
|
</>
|
|
);
|
|
}
|