|
|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const montserrat = Montserrat({
|
|
|
|
|
variable: "--font-montserrat", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Selcom - Sistemi di Sicurezza e Videosorveglianza Napoli", description: "Selcom S.p.A. specializzata in videosorveglianza, controllo accessi e sistemi di sicurezza integrati per aziende, enti pubblici e infrastrutture urbane in Campania.", keywords: "videosorveglianza napoli, sistemi sicurezza napoli, controllo accessi, sicurezza aziendale, impianti videosorveglianza, cctv professionali", metadataBase: new URL("https://selcomspa.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://selcomspa.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Selcom - Soluzioni Professionali di Sicurezza e Videosorveglianza", description: "Specialisti in sistemi di sicurezza, videosorveglianza e controllo accessi per aziende e città.", url: "https://selcomspa.com", siteName: "Selcom S.p.A.", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://selcomspa.com/og-image.jpg", alt: "Selcom - Sistemi di Sicurezza Professionali"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Selcom - Videosorveglianza e Sicurezza Napoli", description: "Soluzioni professionali di sicurezza per aziende e infrastrutture urbane", images: ["https://selcomspa.com/twitter-image.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Selcom S.p.A. - Sicurezza e Videosorveglianza Professionale", description: "Specialisti in controllo accessi, sistemi di sicurezza e videosorveglianza urbana con esperienza decennale e installazioni professionali in tutta Campania."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="it">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|